Reputation: 98
I noticed that the EntryProcessor interface implements Serializable. I have a value in the map that I want to update using executeOnKey method, but would rather use the DataSerializable interface on the EntryProcessor for obvious reasons. My question... What is the behavior? Does the executeOnKey ignore the DataSerializable interface? I can't find anything in the documentation.
Upvotes: 2
Views: 612
Reputation: 11022
Hazelcast send your EntryProcessor
through Operation
which implements the DataSerializable
interface. The serialization of the instances of EntryProcessor
are delegated to the SerializationService
So :
DataSerializable
: Hazelcast will use itEntryProcessor
Upvotes: 7