Class UTF8StringSerializer

  • All Implemented Interfaces:
    Serializer<java.lang.String>, java.io.Serializable

    public class UTF8StringSerializer
    extends java.lang.Object
    implements Serializer<java.lang.String>, java.io.Serializable
    An implementation of Serializer that converts UTF-8 strings. Note that this is incompatible with JavaSerializer of String.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String deserialize​(java.nio.ByteBuffer serializedValue)
      Deserializes the given ByteBuffer into an event.
      java.nio.ByteBuffer serialize​(java.lang.String 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

      • UTF8StringSerializer

        public UTF8StringSerializer()
    • Method Detail

      • serialize

        public java.nio.ByteBuffer serialize​(java.lang.String value)
        Description copied from interface: Serializer
        Serializes the given event.
        Specified by:
        serialize in interface Serializer<java.lang.String>
        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 java.lang.String deserialize​(java.nio.ByteBuffer serializedValue)
        Description copied from interface: Serializer
        Deserializes the given ByteBuffer into an event.
        Specified by:
        deserialize in interface Serializer<java.lang.String>
        Parameters:
        serializedValue - A event that has been previously serialized.
        Returns:
        The event object.