public void afterRun() throws Exception {
((MultiMapService) getService()).getLocalMultiMapStatsImpl(name).incrementOtherOperations();
if (objects != null && !objects.isEmpty()) {
MultiMapContainer container = getOrCreateContainer();
for (Map.Entry<Data, Collection<MultiMapRecord>> entry : objects.entrySet()) {
Data key = entry.getKey();
if (container.isLocked(key)) {
continue;//key is locked so not removed
}
Collection<MultiMapRecord> coll = entry.getValue();
for (MultiMapRecord record : coll) {
publishEvent(EntryEventType.REMOVED, key, record.getObject());