Class AsyncPurgingTrigger<T,W extends Window>

java.lang.Object
org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers.AsyncTrigger<T,W>
org.apache.flink.runtime.asyncprocessing.operators.windowing.triggers.AsyncPurgingTrigger<T,W>
Type Parameters:
T - The type of elements on which this trigger can operate.
W - The type of Windows on which this trigger can operate.
All Implemented Interfaces:
Serializable

@Experimental public class AsyncPurgingTrigger<T,W extends Window> extends AsyncTrigger<T,W>
A trigger that can turn any AsyncTrigger into a purging Trigger. This is for async window operator

When the nested trigger fires, this will return a FIRE_AND_PURGE TriggerResult.

See Also: