Class Session

  • All Implemented Interfaces:
    java.io.Externalizable , java.io.Serializable , java.lang.Comparable , org.apache.avro.generic.GenericContainer , org.apache.avro.generic.GenericRecord , org.apache.avro.generic.IndexedRecord , org.apache.avro.specific.SpecificRecord

    
    public class Session
    extends SpecificRecordBase implements SpecificRecord
                        
    • Constructor Detail

      • Session

        Session()
        Default constructor.
      • Session

        Session(String sessionId, Integer maxMessageSize, Object details)
        All-args constructor.
        Parameters:
        sessionId - The new value for sessionId
        maxMessageSize - The new value for maxMessageSize
        details - The new value for details
    • Method Detail

      • getSessionId

         String getSessionId()

        Gets the value of the 'sessionId' field.

        Returns:

        The value of the 'sessionId' field.

      • setSessionId

         void setSessionId(String value)

        Sets the value of the 'sessionId' field.

        Parameters:
        value - the value to set.
      • getMaxMessageSize

         int getMaxMessageSize()

        Gets the value of the 'maxMessageSize' field.

        Returns:

        The value of the 'maxMessageSize' field.

      • setMaxMessageSize

         void setMaxMessageSize(int value)

        Sets the value of the 'maxMessageSize' field.

        Parameters:
        value - the value to set.
      • getDetails

         Object getDetails()

        Gets the value of the 'details' field.

        Returns:

        The value of the 'details' field.

      • setDetails

         void setDetails(Object value)

        Sets the value of the 'details' field.

        Parameters:
        value - the value to set.
      • getEncoder

         static BinaryMessageEncoder<Session> getEncoder()

        Return the BinaryMessageEncoder instance used by this class.

        Returns:

        the message encoder used by this class

      • getDecoder

         static BinaryMessageDecoder<Session> getDecoder()

        Return the BinaryMessageDecoder instance used by this class.

        Returns:

        the message decoder used by this class

      • createDecoder

         static BinaryMessageDecoder<Session> createDecoder(SchemaStore resolver)

        Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore.

        Parameters:
        resolver - a SchemaStore used to find schemas by fingerprint
        Returns:

        a BinaryMessageDecoder instance for this class backed by the given SchemaStore

      • toByteBuffer

         ByteBuffer toByteBuffer()

        Serializes this Session to a ByteBuffer.

        Returns:

        a buffer holding the serialized data for this instance

      • fromByteBuffer

         static Session fromByteBuffer(ByteBuffer b)

        Deserializes a Session from a ByteBuffer.

        Parameters:
        b - a byte buffer holding serialized data for an instance of this class
        Returns:

        a Session instance decoded from the given buffer

      • newBuilder

         static Session.Builder newBuilder(Session.Builder other)

        Creates a new Session RecordBuilder by copying an existing Builder.

        Parameters:
        other - The existing builder to copy.
        Returns:

        A new Session RecordBuilder

      • newBuilder

         static Session.Builder newBuilder(Session other)

        Creates a new Session RecordBuilder by copying an existing Session instance.

        Parameters:
        other - The existing instance to copy.
        Returns:

        A new Session RecordBuilder