Uses of Interface
org.apache.qpid.protonj2.codec.Decoder
-
Packages that use Decoder Package Description org.apache.qpid.protonj2.client.impl org.apache.qpid.protonj2.codec org.apache.qpid.protonj2.codec.decoders -
-
Uses of Decoder in org.apache.qpid.protonj2.client.impl
Methods in org.apache.qpid.protonj2.client.impl with parameters of type Decoder Modifier and Type Method Description static Message<?>
ClientMessageSupport. decodeMessage(Decoder decoder, ProtonBuffer buffer, Consumer<DeliveryAnnotations> daConsumer)
static Message<?>
ClientMessageSupport. decodeMessage(Decoder decoder, DecoderState decoderState, ProtonBuffer buffer, Consumer<DeliveryAnnotations> daConsumer)
-
Uses of Decoder in org.apache.qpid.protonj2.codec
Methods in org.apache.qpid.protonj2.codec that return Decoder Modifier and Type Method Description static Decoder
CodecFactory. getDecoder()
Decoder
DecoderState. getDecoder()
static Decoder
CodecFactory. getDefaultDecoder()
static Decoder
CodecFactory. getDefaultSaslDecoder()
static Decoder
CodecFactory. getSaslDecoder()
<V> Decoder
Decoder. registerDescribedTypeDecoder(DescribedTypeDecoder<V> decoder)
Allows customDescribedTypeDecoder
instances to be registered with thisDecoder
which will be used if the described type encoding is encountered during decode operations.Methods in org.apache.qpid.protonj2.codec with parameters of type Decoder Modifier and Type Method Description static void
CodecFactory. setDecoder(Decoder decoder)
Sets anDecoder
instance that will be returned from all calls to theCodecFactory.getDecoder()
.static void
CodecFactory. setSaslDecoder(Decoder decoder)
Sets anDecoder
instance that will be returned from all calls to theCodecFactory.getSaslDecoder()
. -
Uses of Decoder in org.apache.qpid.protonj2.codec.decoders
Classes in org.apache.qpid.protonj2.codec.decoders that implement Decoder Modifier and Type Class Description class
ProtonDecoder
The default AMQP Decoder implementation.
-