All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jn.agileway.codec.serialization.bson.BsonCodec Maven / Gradle / Ivy

package com.jn.agileway.codec.serialization.bson;

import com.jn.agileway.codec.AbstractCodec;
import com.jn.langx.codec.CodecException;

public class BsonCodec extends AbstractCodec {

    @Override
    protected byte[] doEncode(T t, boolean withSchema) throws CodecException {
        try {
            return withSchema ? Bsons.serializeWithSchema(t) : Bsons.serialize(t);
        }catch (Throwable ex){
            throw new CodecException(ex);
        }
    }

    @Override
    protected T doDecode(byte[] bytes, boolean withSchema, Class targetType) throws CodecException {
        try {
            return withSchema ? Bsons.deserializeWithSchema(bytes) : Bsons.deserialize(bytes, targetType);
        }catch (Throwable ex){
            throw new CodecException(ex);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy