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

ru.taskurotta.mongodb.driver.BDecoderFactory Maven / Gradle / Ivy

package ru.taskurotta.mongodb.driver;

import com.mongodb.DBDecoder;
import com.mongodb.DBDecoderFactory;
import ru.taskurotta.mongodb.driver.impl.BDecoder;

/**
 */
public class BDecoderFactory implements DBDecoderFactory {

    private StreamBSerializer streamBSerializer;

    public BDecoderFactory(StreamBSerializer streamBSerializer) {
        this.streamBSerializer = streamBSerializer;
    }

    @Override
    public DBDecoder create() {
        return new BDecoder(streamBSerializer);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy