Class AbstractDescribedListTypeEncoder<V>

    • Constructor Detail

      • AbstractDescribedListTypeEncoder

        public AbstractDescribedListTypeEncoder()
    • Method Detail

      • getListEncoding

        public byte getListEncoding​(V value)
        Determine the list type the given value can be encoded to based on the number of bytes that would be needed to hold the encoded form of the resulting list entries.

        Most encoders will return LIST32 but for cases where the type is known to be encoded to LIST8 or always encodes an empty list (LIST0) the encoder can optimize the encode step and not compute sizes.

        Parameters:
        value - The value that is to be encoded.
        Returns:
        the encoding code of the list type encoding needed for this object.
      • writeElement

        public abstract void writeElement​(V source,
                                          int index,
                                          ProtonBuffer buffer,
                                          EncoderState state)
        Instructs the encoder to write the element identified with the given index
        Parameters:
        source - the source of the list elements to write
        index - the element index that needs to be written
        buffer - the buffer to write the element to
        state - the current EncoderState value to use.
      • getElementCount

        public abstract int getElementCount​(V value)
        Gets the number of elements that will result when this type is encoded into an AMQP List type.
        Parameters:
        value - the value which will be encoded as a list type.
        Returns:
        the number of elements that should comprise the encoded list.
      • getMinElementCount

        public int getMinElementCount()
        Return the minimum number of elements that this AMQP type must provide in order to be considered a valid type.
        Returns:
        the minimum number of elements this type must provide.
      • writeType

        public void writeType​(ProtonBuffer buffer,
                              EncoderState state,
                              V value)
        Description copied from interface: TypeEncoder
        Write the full AMQP type data to the given byte buffer.

        This can consist of writing both a type constructor value and the bytes that make up the value of the type being written.

        Parameters:
        buffer - The buffer to write the AMQP type to
        state - The current encoder state
        value - The value that is to be written.
      • writeArray

        public void writeArray​(ProtonBuffer buffer,
                               EncoderState state,
                               java.lang.Object[] values)
        Description copied from interface: TypeEncoder
        Write an array elements of the AMQP type to the given byte buffer.

        This method writes the full Array type definition of an array of the type this encoder manages.

        Parameters:
        buffer - The buffer to write the AMQP array elements to
        state - The current encoder state
        values - The array of values that is to be written.
      • writeRawArray

        public void writeRawArray​(ProtonBuffer buffer,
                                  EncoderState state,
                                  java.lang.Object[] values)
        Description copied from interface: TypeEncoder
        Write an array elements of the AMQP type to the given byte buffer.

        This method writes only the body portion of an AMQP array of this type, the array encoding, size and element count should be assumed to be managed by the caller.

        Parameters:
        buffer - The buffer to write the AMQP array elements to
        state - The current encoder state
        values - The array of values that is to be written.