Class CloseTypeEncoder

All Implemented Interfaces:
DescribedTypeEncoder<Close>, TypeEncoder<Close>

public final class CloseTypeEncoder extends AbstractDescribedListTypeEncoder<Close>
Encoder of AMQP Close type values to a byte stream/
  • Constructor Details

    • CloseTypeEncoder

      public CloseTypeEncoder()
  • Method Details

    • getDescriptorCode

      public UnsignedLong getDescriptorCode()
      Returns:
      the UnsignedLong value to use as the Descriptor for this type.
    • getDescriptorSymbol

      public Symbol getDescriptorSymbol()
      Returns:
      the Symbol value to use as the Descriptor for this type.
    • getTypeClass

      public Class<Close> getTypeClass()
      Returns:
      the Class type that this encoder handles.
    • writeElement

      public void writeElement(Close close, int index, ProtonBuffer buffer, Encoder encoder, EncoderState state)
      Description copied from class: AbstractDescribedListTypeEncoder
      Instructs the encoder to write the element identified with the given index
      Specified by:
      writeElement in class AbstractDescribedListTypeEncoder<Close>
      Parameters:
      close - 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
      encoder - the current Encoder value to use.
      state - the current EncoderState value to use.
    • getListEncoding

      public byte getListEncoding(Close value)
      Description copied from class: AbstractDescribedListTypeEncoder
      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.

      Overrides:
      getListEncoding in class AbstractDescribedListTypeEncoder<Close>
      Parameters:
      value - The value that is to be encoded.
      Returns:
      the encoding code of the list type encoding needed for this object.
    • getElementCount

      public int getElementCount(Close value)
      Description copied from class: AbstractDescribedListTypeEncoder
      Gets the number of elements that will result when this type is encoded into an AMQP List type.
      Specified by:
      getElementCount in class AbstractDescribedListTypeEncoder<Close>
      Parameters:
      value - the value which will be encoded as a list type.
      Returns:
      the number of elements that should comprise the encoded list.