Class ByteArraySerializer

  • All Implemented Interfaces:
    Serializer<byte[]>, java.io.Serializable

    public class ByteArraySerializer
    extends java.lang.Object
    implements Serializer<byte[]>, java.io.Serializable
    An implementation of Serializer that converts byte arrays.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      byte[] deserialize​(java.nio.ByteBuffer serializedValue)
      Deserializes the given ByteBuffer into an event.
      java.nio.ByteBuffer serialize​(byte[] value)
      Serializes the given event.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ByteArraySerializer

        public ByteArraySerializer()
    • Method Detail

      • serialize

        public java.nio.ByteBuffer serialize​(byte[] value)
        Description copied from interface: Serializer
        Serializes the given event.
        Specified by:
        serialize in interface Serializer<byte[]>
        Parameters:
        value - The event to be serialized.
        Returns:
        The serialized form of the event. NOTE: buffers returned should not exceed Serializer.MAX_EVENT_SIZE.
      • deserialize

        public byte[] deserialize​(java.nio.ByteBuffer serializedValue)
        Description copied from interface: Serializer
        Deserializes the given ByteBuffer into an event.
        Specified by:
        deserialize in interface Serializer<byte[]>
        Parameters:
        serializedValue - A event that has been previously serialized.
        Returns:
        The event object.