use of com.hazelcast.map.impl.mapstore.writebehind.WriteBehindStore in project hazelcast by hazelcast.
the class AwaitMapFlushOperation method innerBeforeRun.
@Override
public void innerBeforeRun() throws Exception {
super.innerBeforeRun();
MapDataStore mapDataStore = recordStore.getMapDataStore();
if (!(mapDataStore instanceof WriteBehindStore)) {
return;
}
store = (WriteBehindStore) mapDataStore;
}
Aggregations