use of com.hazelcast.core.ReadOnly in project hazelcast by hazelcast.
the class EntryOperation method innerBeforeRun.
@Override
public void innerBeforeRun() throws Exception {
super.innerBeforeRun();
this.begin = Clock.currentTimeMillis();
this.readOnly = entryProcessor instanceof ReadOnly;
SerializationService serializationService = getNodeEngine().getSerializationService();
ManagedContext managedContext = serializationService.getManagedContext();
entryProcessor = (EntryProcessor) managedContext.initialize(entryProcessor);
}
Aggregations