Package org.apache.ignite.cache.query
Interface ContinuousQueryWithTransformer.EventListener<T>
-
- Type Parameters:
T
- type of data produced by transformerContinuousQueryWithTransformer.getRemoteTransformerFactory()
.
- Enclosing class:
- ContinuousQueryWithTransformer<K,V,T>
public static interface ContinuousQueryWithTransformer.EventListener<T>
Interface for local listener ofContinuousQueryWithTransformer
to implement. Invoked if an cache entry is updated, created or if a batch call is made, after the entries are updated and transformed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onUpdated(Iterable<? extends T> events)
Called after one or more entries have been updated.
-
-
-
Method Detail
-
onUpdated
void 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 ofContinuousQueryWithTransformer
.
-
-