static class MyEntryProcessor extends AbstractEntryProcessor {
@Override
public Object process(Map.Entry entry) {
Object oldValue = entry.getValue();
entry.setValue(null);
return oldValue; //return old value if needed
}
}
--
You received this message because you are subscribed to the Google Groups "Hazelcast" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hazelcast+...@googlegroups.com.
To post to this group, send email to haze...@googlegroups.com.
Visit this group at http://groups.google.com/group/hazelcast.
To view this discussion on the web visit https://groups.google.com/d/msgid/hazelcast/fee96819-cdd7-4b74-9993-6f8f4c9bbb6e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
