public class AtomicLongCodec extends Object implements Codec<AtomicLong>
AtomicLong
objects.Constructor and Description |
---|
AtomicLongCodec() |
Modifier and Type | Method and Description |
---|---|
AtomicLong |
decode(BsonReader reader,
DecoderContext decoderContext)
Decodes a BSON value from the given reader into an instance of the type parameter
T . |
void |
encode(BsonWriter writer,
AtomicLong value,
EncoderContext encoderContext)
Encode an instance of the type parameter
T into a BSON value. |
Class<AtomicLong> |
getEncoderClass()
Returns the Class instance that this encodes.
|
public void encode(BsonWriter writer, AtomicLong value, EncoderContext encoderContext)
Encoder
T
into a BSON value.encode
in interface Encoder<AtomicLong>
writer
- the BSON writer to encode intovalue
- the value to encodeencoderContext
- the encoder contextpublic AtomicLong decode(BsonReader reader, DecoderContext decoderContext)
Decoder
T
.decode
in interface Decoder<AtomicLong>
reader
- the BSON readerdecoderContext
- the decoder contextT
.public Class<AtomicLong> getEncoderClass()
Encoder
getEncoderClass
in interface Encoder<AtomicLong>