Class CodeWithScopeCodec

    • Constructor Detail

      • CodeWithScopeCodec

        public CodeWithScopeCodec​(Codec<Document> documentCodec)
        Creates a new CodeWithScopeCodec.
        Parameters:
        documentCodec - a Codec for encoding and decoding the CodeWithScope.getScope().
    • Method Detail

      • decode

        public CodeWithScope decode​(BsonReader bsonReader,
                                    DecoderContext decoderContext)
        Description copied from interface: Decoder
        Decodes a BSON value from the given reader into an instance of the type parameter T.
        Specified by:
        decode in interface Decoder<CodeWithScope>
        Parameters:
        bsonReader - the BSON reader
        decoderContext - the decoder context
        Returns:
        an instance of the type parameter T.
      • encode

        public void encode​(BsonWriter writer,
                           CodeWithScope codeWithScope,
                           EncoderContext encoderContext)
        Description copied from interface: Encoder
        Encode an instance of the type parameter T into a BSON value.
        Specified by:
        encode in interface Encoder<CodeWithScope>
        Parameters:
        writer - the BSON writer to encode into
        codeWithScope - the value to encode
        encoderContext - the encoder context
      • getEncoderClass

        public java.lang.Class<CodeWithScope> getEncoderClass()
        Description copied from interface: Encoder
        Returns the Class instance that this encodes. This is necessary because Java does not reify generic types.
        Specified by:
        getEncoderClass in interface Encoder<CodeWithScope>
        Returns:
        the Class instance that this encodes.