예제 #1
0
 @Override
 public void afterRun() throws Exception {
   super.afterRun();
   if (eventType == null) {
     return;
   }
   invalidateNearCaches();
   publishEntryEvent();
   publishWanReplicationEvent();
   evict(false);
 }
예제 #2
0
 @Override
 protected void writeInternal(ObjectDataOutput out) throws IOException {
   super.writeInternal(out);
   out.writeObject(entryProcessor);
 }
예제 #3
0
 @Override
 protected void readInternal(ObjectDataInput in) throws IOException {
   super.readInternal(in);
   entryProcessor = in.readObject();
 }