Example usage for org.springframework.core.serializer Deserializer interface-usage

List of usage examples for org.springframework.core.serializer Deserializer interface-usage

Introduction

In this page you can find the example usage for org.springframework.core.serializer Deserializer interface-usage.

Usage

From source file org.springdata.ehcache.serializer.DataDeserializer.java

public class DataDeserializer<T> implements Deserializer<T> {

    private final Class<T> entityClass;

    public DataDeserializer(Class<T> entityClass) {
        this.entityClass = entityClass;

From source file grails.plugin.cache.web.filter.redis.GrailsDeserializer.java

/**
 * @author Burt Beckwith
 */
public class GrailsDeserializer implements Deserializer<Object> {

    public Object deserialize(InputStream inputStream) throws IOException {

From source file org.gametube.redisflexiblecache.RedisFlexibleDeserializer.java

/**
 * Custom Deserializer (faster than {@link org.springframework.core.serializer.DefaultDeserializer} )
 */
public class RedisFlexibleDeserializer implements Deserializer<Object> {

    public Object deserialize(InputStream inputStream) throws IOException {

From source file com.acmemotors.integration.OBD2Serializer.java

/**
 * @author mminella
 */
public class OBD2Serializer implements Serializer<String>, Deserializer<String> {

    /**

From source file org.musa.payload.MechanicusTeleportReceiver.java

/**
 *
 * @author mephisto9000
 */
public class MechanicusTeleportReceiver implements Deserializer<SpaceMarine> {

From source file org.springframework.integration.ip.tcp.serializer.AbstractByteArraySerializer.java

/**
 * Base class for (de)serializers that provide a mechanism to
 * reconstruct a byte array from an arbitrary stream.
 *
 * @author Gary Russell
 * @since 2.0

From source file org.vader.common.spring.cache.KryoConverter.java

/**
 * @author Vadim Baranov
 *
 * @param <T> convert type
 */
public class KryoConverter<T> implements Serializer<T>, Deserializer<T> {

From source file pl.edu.spring.tcp.CustomSerializerDeserializer.java

public class CustomSerializerDeserializer implements Serializer<Object>, Deserializer<Object> {

    private static final int SENDER_NAME_LENGTH = 10;

    private final ClassLoader classLoader;

From source file com.haythem.integration.CustomSerializerDeserializer.java

/**
 * This class is used to demonstrate how you can create a custom serializer/deserializer
 * to convert a TCP stream into custom objects which your domain-specific code can use.
 *
 * Since this is custom, it will have to have its own predefined assumptions for dealing
 * with the stream. In other words, there will have to be some indication within the

From source file org.springframework.integration.samples.tcpclientserver.CustomSerializerDeserializer.java

/**
 * This class is used to demonstrate how you can create a custom serializer/deserializer
 * to convert a TCP stream into custom objects which your domain-specific code can use.
 *
 * Since this is custom, it will have to have its own predefined assumptions for dealing
 * with the stream. In other words, there will have to be some indication within the