Esempio n. 1
0
 @Override
 protected void doRealInvocation(Event<K, V> event) {
   // This is only used with clusters and such we can safely cast this here
   if (!handler.handleEvent((CacheEntryEvent<K, V>) event, invocation)) {
     super.doRealInvocation(event);
   }
 }
Esempio n. 2
0
 @Override
 protected void doRealInvocation(Event<K, V> event) {
   if (!handler.handleEvent(event, invocation)) {
     super.doRealInvocation(event);
   }
 }