use of com.hazelcast.multimap.impl.MultiMapContainer in project hazelcast by hazelcast.
the class GetAllOperation method run.
@Override
public void run() throws Exception {
MultiMapContainer container = getOrCreateContainer();
MultiMapValue multiMapValue = container.getMultiMapValueOrNull(dataKey);
Collection coll = null;
if (multiMapValue != null) {
multiMapValue.incrementHit();
coll = multiMapValue.getCollection(executedLocally());
}
response = new MultiMapResponse(coll, getValueCollectionType(container));
}
Aggregations