this.key = key;
this.value = value;
}
public void run() throws Exception {
MultiMapContainer container = getOrCreateContainer();
((MultiMapService) getService()).getLocalMultiMapStatsImpl(name).incrementOtherOperations();
if (key != null && value != null) {
response = container.containsEntry(isBinary(), key, value);
} else if (key != null) {
response = container.containsKey(key);
} else {
response = container.containsValue(isBinary(), value);
}
}