Package com.hazelcast.map.impl.mapstore.writethrough

Examples of com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore


     * @param <K>          type of key to store.
     * @param <V>          type of value to store.
     * @return new write through store manager.
     */
    public static <K, V> MapDataStore<K, V> createWriteThroughStore(MapContainer mapContainer) {
        return (MapDataStore<K, V>) new WriteThroughStore(mapContainer.getStore(),
                mapContainer.getMapServiceContext().getNodeEngine().getSerializationService());
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.map.impl.mapstore.writethrough.WriteThroughStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.