use of com.hazelcast.multimap.impl.MultiMapService in project hazelcast by hazelcast.
the class TxnPutOperation method afterRun.
@Override
public void afterRun() throws Exception {
long elapsed = Math.max(0, Clock.currentTimeMillis() - begin);
final MultiMapService service = getService();
service.getLocalMultiMapStatsImpl(name).incrementPuts(elapsed);
if (Boolean.TRUE.equals(response)) {
publishEvent(EntryEventType.ADDED, dataKey, value, null);
}
}
Aggregations