Uses of Interface
org.apache.qpid.protonj2.codec.DecoderState
-
-
Uses of DecoderState in org.apache.qpid.protonj2.client.impl
Methods in org.apache.qpid.protonj2.client.impl with parameters of type DecoderState Modifier and Type Method Description static Message<?>
ClientMessageSupport. decodeMessage(Decoder decoder, DecoderState decoderState, ProtonBuffer buffer, java.util.function.Consumer<DeliveryAnnotations> daConsumer)
-
Uses of DecoderState in org.apache.qpid.protonj2.codec
Methods in org.apache.qpid.protonj2.codec that return DecoderState Modifier and Type Method Description DecoderState
Decoder. getCachedDecoderState()
Return a singletonDecoderState
instance that is meant to be shared within single threaded decoder interactions.DecoderState
Decoder. newDecoderState()
Creates a newDecoderState
instance that can be used when interacting with the Decoder.DecoderState
DecoderState. reset()
Resets any intermediate state back to default values.Methods in org.apache.qpid.protonj2.codec with parameters of type DecoderState Modifier and Type Method Description TypeDecoder<?>
Decoder. peekNextTypeDecoder(ProtonBuffer buffer, DecoderState state)
Peeks ahead in the givenProtonBuffer
instance and returns aTypeDecoder
that can read the next encoded AMQP type from the buffer's bytes.V[]
TypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Reads a series of this type that have been encoded into the body of an Array type.Binary
Decoder. readBinary(ProtonBuffer buffer, DecoderState state)
Reads an encodedBinary
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.ProtonBuffer
Decoder. readBinaryAsBuffer(ProtonBuffer buffer, DecoderState state)
Reads an encodedBinary
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.lang.Boolean
Decoder. readBoolean(ProtonBuffer buffer, DecoderState state)
Reads an encodedBoolean
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.boolean
Decoder. readBoolean(ProtonBuffer buffer, DecoderState state, boolean defaultValue)
Reads an encodedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.lang.Byte
Decoder. readByte(ProtonBuffer buffer, DecoderState state)
Reads an encodedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.byte
Decoder. readByte(ProtonBuffer buffer, DecoderState state, byte defaultValue)
Reads an encodedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.lang.Character
Decoder. readCharacter(ProtonBuffer buffer, DecoderState state)
Reads an encodedCharacter
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.char
Decoder. readCharacter(ProtonBuffer buffer, DecoderState state, char defaultValue)
Reads an encodedCharacter
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Decimal128
Decoder. readDecimal128(ProtonBuffer buffer, DecoderState state)
Reads an encodedDecimal128
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Decimal32
Decoder. readDecimal32(ProtonBuffer buffer, DecoderState state)
Reads an encodedDecimal32
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Decimal64
Decoder. readDecimal64(ProtonBuffer buffer, DecoderState state)
Reads an encodedDecimal64
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.DeliveryTag
Decoder. readDeliveryTag(ProtonBuffer buffer, DecoderState state)
This method expects to read aBinary
encoded type from the provided buffer and constructs aDeliveryTag
type that wraps the bytes encoded.java.lang.Double
Decoder. readDouble(ProtonBuffer buffer, DecoderState state)
Reads an encodedDouble
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.double
Decoder. readDouble(ProtonBuffer buffer, DecoderState state, double defaultValue)
Reads an encodedDouble
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.lang.Float
Decoder. readFloat(ProtonBuffer buffer, DecoderState state)
Reads an encodedFloat
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.float
Decoder. readFloat(ProtonBuffer buffer, DecoderState state, float defaultValue)
Reads an encodedFloat
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.lang.Integer
Decoder. readInteger(ProtonBuffer buffer, DecoderState state)
Reads an encodedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.int
Decoder. readInteger(ProtonBuffer buffer, DecoderState state, int defaultValue)
Reads an encodedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.<V> java.util.List<V>
Decoder. readList(ProtonBuffer buffer, DecoderState state)
Reads an encodedList
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.lang.Long
Decoder. readLong(ProtonBuffer buffer, DecoderState state)
Reads an encodedLong
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.long
Decoder. readLong(ProtonBuffer buffer, DecoderState state, long defaultValue)
Reads an encodedLong
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.<K,V>
java.util.Map<K,V>Decoder. readMap(ProtonBuffer buffer, DecoderState state)
Reads an encodedMap
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.<T> T[]
Decoder. readMultiple(ProtonBuffer buffer, DecoderState state, java.lang.Class<T> clazz)
Reads one or more encoded values from the givenProtonBuffer
an return it as an array ofObject
instances which the caller must then interpret.TypeDecoder<?>
Decoder. readNextTypeDecoder(ProtonBuffer buffer, DecoderState state)
Reads from the givenProtonBuffer
instance and returns aTypeDecoder
that can read the next encoded AMQP type from the buffer's bytes.java.lang.Object
Decoder. readObject(ProtonBuffer buffer, DecoderState state)
Reads an encoded value from the givenProtonBuffer
an return it as anObject
which the caller must then interpret.<T> T
Decoder. readObject(ProtonBuffer buffer, DecoderState state, java.lang.Class<T> clazz)
Reads an encoded value from the givenProtonBuffer
an return it as anObject
which the caller must then interpret.java.lang.Short
Decoder. readShort(ProtonBuffer buffer, DecoderState state)
Reads an encodedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.short
Decoder. readShort(ProtonBuffer buffer, DecoderState state, short defaultValue)
Reads an encodedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.lang.String
Decoder. readString(ProtonBuffer buffer, DecoderState state)
Reads an encodedString
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.Symbol
Decoder. readSymbol(ProtonBuffer buffer, DecoderState state)
Reads an encodedSymbol
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.lang.String
Decoder. readSymbol(ProtonBuffer buffer, DecoderState state, java.lang.String defaultValue)
Reads an encodedString
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.lang.Long
Decoder. readTimestamp(ProtonBuffer buffer, DecoderState state)
Reads an encoded AMQP time stamp value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.long
Decoder. readTimestamp(ProtonBuffer buffer, DecoderState state, long defaultValue)
Reads an encoded AMQP time stamp value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.UnsignedByte
Decoder. readUnsignedByte(ProtonBuffer buffer, DecoderState state)
Reads an encodedUnsignedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.byte
Decoder. readUnsignedByte(ProtonBuffer buffer, DecoderState state, byte defaultValue)
Reads an encodedUnsignedByte
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.UnsignedInteger
Decoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state)
Reads an encodedUnsignedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.int
Decoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state, int defaultValue)
Reads an encodedUnsignedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.long
Decoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state, long defaultValue)
Reads an encodedUnsignedInteger
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.UnsignedLong
Decoder. readUnsignedLong(ProtonBuffer buffer, DecoderState state)
Reads an encodedUnsignedLong
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.long
Decoder. readUnsignedLong(ProtonBuffer buffer, DecoderState state, long defaultValue)
Reads an encodedUnsignedLong
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.UnsignedShort
Decoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state)
Reads an encodedUnsignedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.int
Decoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state, int defaultValue)
Reads an encodedUnsignedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.short
Decoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state, short defaultValue)
Reads an encodedUnsignedShort
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.java.util.UUID
Decoder. readUUID(ProtonBuffer buffer, DecoderState state)
Reads an encodedUUID
value from the givenProtonBuffer
assuming that the next value in the byte stream is that type.V
TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Reads the next type from the given buffer and returns it.void
TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
Skips over the bytes that compose the type this descriptor decodes. -
Uses of DecoderState in org.apache.qpid.protonj2.codec.decoders
Classes in org.apache.qpid.protonj2.codec.decoders that implement DecoderState Modifier and Type Class Description class
ProtonDecoderState
State object used by the Built in Decoder implementation.Methods in org.apache.qpid.protonj2.codec.decoders with parameters of type DecoderState Modifier and Type Method Description TypeDecoder<?>
ProtonDecoder. peekNextTypeDecoder(ProtonBuffer buffer, DecoderState state)
V[]
AbstractPrimitiveTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DescribedType[]
UnknownDescribedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Binary
ProtonDecoder. readBinary(ProtonBuffer buffer, DecoderState state)
ProtonBuffer
ProtonDecoder. readBinaryAsBuffer(ProtonBuffer buffer, DecoderState state)
java.lang.Boolean
ProtonDecoder. readBoolean(ProtonBuffer buffer, DecoderState state)
boolean
ProtonDecoder. readBoolean(ProtonBuffer buffer, DecoderState state, boolean defaultValue)
java.lang.Byte
ProtonDecoder. readByte(ProtonBuffer buffer, DecoderState state)
byte
ProtonDecoder. readByte(ProtonBuffer buffer, DecoderState state, byte defaultValue)
java.lang.Character
ProtonDecoder. readCharacter(ProtonBuffer buffer, DecoderState state)
char
ProtonDecoder. readCharacter(ProtonBuffer buffer, DecoderState state, char defaultValue)
Decimal128
ProtonDecoder. readDecimal128(ProtonBuffer buffer, DecoderState state)
Decimal32
ProtonDecoder. readDecimal32(ProtonBuffer buffer, DecoderState state)
Decimal64
ProtonDecoder. readDecimal64(ProtonBuffer buffer, DecoderState state)
DeliveryTag
ProtonDecoder. readDeliveryTag(ProtonBuffer buffer, DecoderState state)
java.lang.Double
ProtonDecoder. readDouble(ProtonBuffer buffer, DecoderState state)
double
ProtonDecoder. readDouble(ProtonBuffer buffer, DecoderState state, double defaultValue)
java.lang.Float
ProtonDecoder. readFloat(ProtonBuffer buffer, DecoderState state)
float
ProtonDecoder. readFloat(ProtonBuffer buffer, DecoderState state, float defaultValue)
java.lang.Integer
ProtonDecoder. readInteger(ProtonBuffer buffer, DecoderState state)
int
ProtonDecoder. readInteger(ProtonBuffer buffer, DecoderState state, int defaultValue)
<V> java.util.List<V>
ProtonDecoder. readList(ProtonBuffer buffer, DecoderState state)
java.lang.Long
ProtonDecoder. readLong(ProtonBuffer buffer, DecoderState state)
long
ProtonDecoder. readLong(ProtonBuffer buffer, DecoderState state, long defaultValue)
<K,V>
java.util.Map<K,V>ProtonDecoder. readMap(ProtonBuffer buffer, DecoderState state)
<T> T[]
ProtonDecoder. readMultiple(ProtonBuffer buffer, DecoderState state, java.lang.Class<T> clazz)
TypeDecoder<?>
ProtonDecoder. readNextTypeDecoder(ProtonBuffer buffer, DecoderState state)
java.lang.Object
ProtonDecoder. readObject(ProtonBuffer buffer, DecoderState state)
<T> T
ProtonDecoder. readObject(ProtonBuffer buffer, DecoderState state, java.lang.Class<T> clazz)
java.lang.Short
ProtonDecoder. readShort(ProtonBuffer buffer, DecoderState state)
short
ProtonDecoder. readShort(ProtonBuffer buffer, DecoderState state, short defaultValue)
java.lang.String
ProtonDecoder. readString(ProtonBuffer buffer, DecoderState state)
Symbol
ProtonDecoder. readSymbol(ProtonBuffer buffer, DecoderState state)
java.lang.String
ProtonDecoder. readSymbol(ProtonBuffer buffer, DecoderState state, java.lang.String defaultValue)
java.lang.Long
ProtonDecoder. readTimestamp(ProtonBuffer buffer, DecoderState state)
long
ProtonDecoder. readTimestamp(ProtonBuffer buffer, DecoderState state, long defaultValue)
UnsignedByte
ProtonDecoder. readUnsignedByte(ProtonBuffer buffer, DecoderState state)
byte
ProtonDecoder. readUnsignedByte(ProtonBuffer buffer, DecoderState state, byte defaultValue)
UnsignedInteger
ProtonDecoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state)
int
ProtonDecoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state, int defaultValue)
long
ProtonDecoder. readUnsignedInteger(ProtonBuffer buffer, DecoderState state, long defaultValue)
UnsignedLong
ProtonDecoder. readUnsignedLong(ProtonBuffer buffer, DecoderState state)
long
ProtonDecoder. readUnsignedLong(ProtonBuffer buffer, DecoderState state, long defaultValue)
UnsignedShort
ProtonDecoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state)
int
ProtonDecoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state, int defaultValue)
short
ProtonDecoder. readUnsignedShort(ProtonBuffer buffer, DecoderState state, short defaultValue)
java.util.UUID
ProtonDecoder. readUUID(ProtonBuffer buffer, DecoderState state)
DescribedType
UnknownDescribedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
void
UnknownDescribedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecoderState in org.apache.qpid.protonj2.codec.decoders.messaging
Methods in org.apache.qpid.protonj2.codec.decoders.messaging with parameters of type DecoderState Modifier and Type Method Description Accepted[]
AcceptedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
AmqpSequence[]
AmqpSequenceTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
AmqpValue[]
AmqpValueTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
ApplicationProperties[]
ApplicationPropertiesTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Data[]
DataTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeleteOnClose[]
DeleteOnCloseTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeleteOnNoLinksOrMessages[]
DeleteOnNoLinksOrMessagesTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeleteOnNoLinks[]
DeleteOnNoLinksTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeleteOnNoMessages[]
DeleteOnNoMessagesTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
DeliveryAnnotations[]
DeliveryAnnotationsTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Footer[]
FooterTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Header[]
HeaderTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
MessageAnnotations[]
MessageAnnotationsTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Modified[]
ModifiedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Properties[]
PropertiesTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Received[]
ReceivedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Rejected[]
RejectedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Released[]
ReleasedTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Source[]
SourceTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Target[]
TargetTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Accepted
AcceptedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
AmqpSequence<?>
AmqpSequenceTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
AmqpValue<?>
AmqpValueTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
ApplicationProperties
ApplicationPropertiesTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Data
DataTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeleteOnClose
DeleteOnCloseTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeleteOnNoLinksOrMessages
DeleteOnNoLinksOrMessagesTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeleteOnNoLinks
DeleteOnNoLinksTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeleteOnNoMessages
DeleteOnNoMessagesTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
DeliveryAnnotations
DeliveryAnnotationsTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Footer
FooterTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Header
HeaderTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
MessageAnnotations
MessageAnnotationsTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Modified
ModifiedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Properties
PropertiesTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Received
ReceivedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Rejected
RejectedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Released
ReleasedTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Source
SourceTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Target
TargetTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
void
AcceptedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AmqpSequenceTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AmqpValueTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ApplicationPropertiesTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DataTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeleteOnCloseTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeleteOnNoLinksOrMessagesTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeleteOnNoLinksTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeleteOnNoMessagesTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeliveryAnnotationsTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
FooterTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
HeaderTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
MessageAnnotationsTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ModifiedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
PropertiesTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ReceivedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
RejectedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ReleasedTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SourceTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
TargetTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecoderState in org.apache.qpid.protonj2.codec.decoders.primitives
Methods in org.apache.qpid.protonj2.codec.decoders.primitives with parameters of type DecoderState Modifier and Type Method Description boolean
BooleanFalseTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
boolean
BooleanTrueTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
boolean
BooleanTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.byte
ByteTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.char
CharacterTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.double
DoubleTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.float
FloatTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.int
Integer32TypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.int
Integer8TypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.long
Long8TypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
long
LongTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.short
ShortTypeDecoder. readPrimitiveValue(ProtonBuffer buffer, DecoderState state)
Reads the primitive value from the givenProtonBuffer
and returns it.java.lang.String
AbstractSymbolTypeDecoder. readString(ProtonBuffer buffer, DecoderState state)
Reads a String view of an encoded Symbol value from the given buffer.java.lang.Object
AbstractArrayTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Binary
AbstractBinaryTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.util.List<java.lang.Object>
AbstractListTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.util.Map<java.lang.Object,java.lang.Object>
AbstractMapTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.String
AbstractStringTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Symbol
AbstractSymbolTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Boolean
BooleanFalseTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Boolean
BooleanTrueTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Boolean
BooleanTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Byte
ByteTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Character
CharacterTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Decimal128
Decimal128TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Decimal32
Decimal32TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Decimal64
Decimal64TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Double
DoubleTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Float
FloatTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Integer
Integer32TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Integer
Integer8TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.util.List<java.lang.Object>
List0TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Long
Long8TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Long
LongTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Void
NullTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Short
ShortTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.lang.Long
TimestampTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedByte
UnsignedByteTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedInteger
UnsignedInteger0TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedInteger
UnsignedInteger32TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedInteger
UnsignedInteger8TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedLong
UnsignedLong0TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedLong
UnsignedLong64TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedLong
UnsignedLong8TypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
UnsignedShort
UnsignedShortTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
java.util.UUID
UUIDTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
byte[]
AbstractBinaryTypeDecoder. readValueAsArray(ProtonBuffer buffer, DecoderState state)
Read and decode an AMQPBinary
into a byte array instance and return it.ProtonBuffer
AbstractBinaryTypeDecoder. readValueAsBuffer(ProtonBuffer buffer, DecoderState state)
Read and decode an AMQPBinary
into aProtonBuffer
instance and return it.void
AbstractArrayTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractBinaryTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractListTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractMapTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractStringTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
AbstractSymbolTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
BooleanFalseTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
BooleanTrueTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
BooleanTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ByteTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
CharacterTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Decimal128TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Decimal32TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Decimal64TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DoubleTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
FloatTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Integer32TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Integer8TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
List0TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
Long8TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
LongTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
NullTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ShortTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
TimestampTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedByteTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedInteger0TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedInteger32TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedInteger8TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedLong0TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedLong64TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedLong8TypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UnsignedShortTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
UUIDTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecoderState in org.apache.qpid.protonj2.codec.decoders.security
Methods in org.apache.qpid.protonj2.codec.decoders.security with parameters of type DecoderState Modifier and Type Method Description SaslChallenge[]
SaslChallengeTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslInit[]
SaslInitTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslMechanisms[]
SaslMechanismsTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslOutcome[]
SaslOutcomeTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslResponse[]
SaslResponseTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
SaslChallenge
SaslChallengeTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
SaslInit
SaslInitTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
SaslMechanisms
SaslMechanismsTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
SaslOutcome
SaslOutcomeTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
SaslResponse
SaslResponseTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
void
SaslChallengeTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SaslInitTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SaslMechanismsTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SaslOutcomeTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
SaslResponseTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecoderState in org.apache.qpid.protonj2.codec.decoders.transactions
Methods in org.apache.qpid.protonj2.codec.decoders.transactions with parameters of type DecoderState Modifier and Type Method Description Coordinator[]
CoordinatorTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Declared[]
DeclaredTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Declare[]
DeclareTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Discharge[]
DischargeTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
TransactionalState[]
TransactionStateTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Coordinator
CoordinatorTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Declared
DeclaredTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Declare
DeclareTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Discharge
DischargeTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
TransactionalState
TransactionStateTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
void
CoordinatorTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeclaredTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DeclareTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DischargeTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
TransactionStateTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-
Uses of DecoderState in org.apache.qpid.protonj2.codec.decoders.transport
Methods in org.apache.qpid.protonj2.codec.decoders.transport with parameters of type DecoderState Modifier and Type Method Description Attach[]
AttachTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Begin[]
BeginTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Close[]
CloseTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Detach[]
DetachTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Disposition[]
DispositionTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
End[]
EndTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
ErrorCondition[]
ErrorConditionTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Flow[]
FlowTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Open[]
OpenTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Transfer[]
TransferTypeDecoder. readArrayElements(ProtonBuffer buffer, DecoderState state, int count)
Attach
AttachTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Begin
BeginTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Close
CloseTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Detach
DetachTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Disposition
DispositionTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
End
EndTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
ErrorCondition
ErrorConditionTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Flow
FlowTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Open
OpenTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
Transfer
TransferTypeDecoder. readValue(ProtonBuffer buffer, DecoderState state)
void
AttachTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
BeginTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
CloseTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DetachTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
DispositionTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
EndTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
ErrorConditionTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
FlowTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
OpenTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
void
TransferTypeDecoder. skipValue(ProtonBuffer buffer, DecoderState state)
-