Package org.apache.ignite.cache.query
Interface ContinuousQueryWithTransformer.EventListener<T>
- 
- Type Parameters:
- T- type of data produced by transformer- ContinuousQueryWithTransformer.getRemoteTransformerFactory().
 - Enclosing class:
- ContinuousQueryWithTransformer<K,V,T>
 
 public static interface ContinuousQueryWithTransformer.EventListener<T>Interface for local listener ofContinuousQueryWithTransformerto implement. Invoked if an cache entry is updated, created or if a batch call is made, after the entries are updated and transformed.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonUpdated(Iterable<? extends T> events)Called after one or more entries have been updated.
 
- 
- 
- 
Method Detail- 
onUpdatedvoid onUpdated(Iterable<? extends T> events) Called after one or more entries have been updated.- Parameters:
- events- The entries just updated that transformed with remote transformer of- ContinuousQueryWithTransformer.
 
 
- 
 
-