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

com.tvd12.ezydata.hazelcast.mapstore.EzyMongoCollectionMapstore Maven / Gradle / Ivy

The newest version!
package com.tvd12.ezydata.hazelcast.mapstore;

import com.mongodb.client.MongoCollection;
import org.bson.Document;

public abstract class EzyMongoCollectionMapstore
    extends EzyMongoDatabaseMapstore {

    protected MongoCollection collection;

    @Override
    public void postInit() {
        super.postInit();
        this.collection = database.getCollection(getCollectionName());
    }

    protected abstract String getCollectionName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy