Uses of Interface
org.apache.qpid.protonj2.codec.Encoder
-
Packages that use Encoder Package Description org.apache.qpid.protonj2.client.impl org.apache.qpid.protonj2.codec org.apache.qpid.protonj2.codec.encoders -
-
Uses of Encoder in org.apache.qpid.protonj2.client.impl
Methods in org.apache.qpid.protonj2.client.impl with parameters of type Encoder Modifier and Type Method Description static ProtonBuffer
ClientMessageSupport. encodeMessage(Encoder encoder, ProtonBufferAllocator allocator, AdvancedMessage<?> message, java.util.Map<java.lang.String,java.lang.Object> deliveryAnnotations)
static ProtonBuffer
ClientMessageSupport. encodeMessage(Encoder encoder, EncoderState encoderState, ProtonBufferAllocator allocator, AdvancedMessage<?> message, java.util.Map<java.lang.String,java.lang.Object> deliveryAnnotations)
-
Uses of Encoder in org.apache.qpid.protonj2.codec
Methods in org.apache.qpid.protonj2.codec that return Encoder Modifier and Type Method Description static Encoder
CodecFactory. getDefaultEncoder()
static Encoder
CodecFactory. getDefaultSaslEncoder()
static Encoder
CodecFactory. getEncoder()
Encoder
EncoderState. getEncoder()
static Encoder
CodecFactory. getSaslEncoder()
<V> Encoder
Encoder. registerDescribedTypeEncoder(DescribedTypeEncoder<V> encoder)
Register aDescribedTypeEncoder
which can be used when writing custom types using this encoder.Methods in org.apache.qpid.protonj2.codec with parameters of type Encoder Modifier and Type Method Description static void
CodecFactory. setEncoder(Encoder encoder)
Sets anEncoder
instance that will be returned from all calls to theCodecFactory.getEncoder()
.static void
CodecFactory. setSaslEncoder(Encoder encoder)
Sets anEncoder
instance that will be returned from all calls to theCodecFactory.getSaslEncoder()
. -
Uses of Encoder in org.apache.qpid.protonj2.codec.encoders
Classes in org.apache.qpid.protonj2.codec.encoders that implement Encoder Modifier and Type Class Description class
ProtonEncoder
The default AMQP Encoder implementation.
-