Interface CacheReloadTrigger.Context
- Enclosing interface:
- CacheReloadTrigger
@PublicEvolving
public static interface CacheReloadTrigger.Context
Context of
CacheReloadTrigger for getting information about times and triggering
reload.-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the current processing time.longReturns the current event-time watermark.Trigger a reload operation on the cache.
-
Method Details
-
currentProcessingTime
long currentProcessingTime()Returns the current processing time. -
currentWatermark
long currentWatermark()Returns the current event-time watermark. -
triggerReload
CompletableFuture<Void> triggerReload()Trigger a reload operation on the cache. Runtime will wait for the first load to complete to start an execution of lookup join.
-