Interface CacheReloadTrigger.Context
-
- Enclosing interface:
- CacheReloadTrigger
@PublicEvolving public static interface CacheReloadTrigger.ContextContext ofCacheReloadTriggerfor getting information about times and triggering reload.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcurrentProcessingTime()Returns the current processing time.longcurrentWatermark()Returns the current event-time watermark.CompletableFuture<Void>triggerReload()Trigger a reload operation on the cache.
-
-
-
Method Detail
-
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.
-
-