* @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());
}