Uses of Class
org.apache.pulsar.functions.windowing.EvictionPolicy.Action
-
Packages that use EvictionPolicy.Action Package Description org.apache.pulsar.functions.windowing org.apache.pulsar.functions.windowing.evictors -
-
Uses of EvictionPolicy.Action in org.apache.pulsar.functions.windowing
Methods in org.apache.pulsar.functions.windowing that return EvictionPolicy.Action Modifier and Type Method Description EvictionPolicy.ActionEvictionPolicy. evict(Event<T> event)Decides if an event should be expired from the window, processed in the current window or kept for later processing.static EvictionPolicy.ActionEvictionPolicy.Action. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EvictionPolicy.Action[]EvictionPolicy.Action. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of EvictionPolicy.Action in org.apache.pulsar.functions.windowing.evictors
Methods in org.apache.pulsar.functions.windowing.evictors that return EvictionPolicy.Action Modifier and Type Method Description EvictionPolicy.ActionCountEvictionPolicy. evict(Event<T> event)EvictionPolicy.ActionTimeEvictionPolicy. evict(Event<T> event)Decides if an event should be expired from the window, processed in the current window or kept for later processing.EvictionPolicy.ActionWatermarkCountEvictionPolicy. evict(Event<T> event)EvictionPolicy.ActionWatermarkTimeEvictionPolicy. evict(Event<T> event)Decides if an event should be expired from the window, processed in the current window or kept for later processing.
-