W - The type of Windows on which this trigger can operate.@PublicEvolving public class ContinuousProcessingTimeTrigger<W extends Window> extends Trigger<Object,W>
Trigger that continuously fires based on a given time interval. The time is the current
system time.Trigger.TriggerContext| Modifier and Type | Method and Description |
|---|---|
void |
clear(W window,
Trigger.TriggerContext ctx)
Clears any state that the trigger might still hold for the given window.
|
long |
getInterval() |
static <W extends Window> |
of(Time interval)
Creates a trigger that continuously fires based on the given interval.
|
TriggerResult |
onElement(Object element,
long timestamp,
W window,
Trigger.TriggerContext ctx)
Called for every element that gets added to a pane.
|
TriggerResult |
onEventTime(long time,
W window,
Trigger.TriggerContext ctx)
Called when an event-time timer that was set using the trigger context fires.
|
TriggerResult |
onProcessingTime(long time,
W window,
Trigger.TriggerContext ctx)
Called when a processing-time timer that was set using the trigger context fires.
|
String |
toString() |
public TriggerResult onElement(Object element, long timestamp, W window, Trigger.TriggerContext ctx) throws Exception
TriggeronElement in class Trigger<Object,W extends Window>element - The element that arrived.timestamp - The timestamp of the element that arrived.window - The window to which this pane belongs.ctx - A context object that can be used to register timer callbacks.Exceptionpublic TriggerResult onEventTime(long time, W window, Trigger.TriggerContext ctx) throws Exception
Triggerpublic TriggerResult onProcessingTime(long time, W window, Trigger.TriggerContext ctx) throws Exception
Triggerpublic void clear(W window, Trigger.TriggerContext ctx) throws Exception
TriggerTrigger.TriggerContext.registerEventTimeTimer(long)
and Trigger.TriggerContext.registerProcessingTimeTimer(long) should be deleted here as
well as state acquired using Trigger.TriggerContext.getPartitionedState(StateDescriptor).
By default, this method does nothing.
public long getInterval()
public static <W extends Window> ContinuousProcessingTimeTrigger<W> of(Time interval)
W - The type of Windows on which this trigger can operate.interval - The time interval at which to fire.Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.