@Experimental(value=TRIGGER) public class AfterFirst extends Trigger.OnceTrigger
Trigger
that fires once after at least one of its sub-triggers have fired.Trigger.OnceTrigger
subTriggers
Modifier and Type | Method and Description |
---|---|
protected Trigger.OnceTrigger |
getContinuationTrigger(java.util.List<Trigger> continuationTriggers)
Subclasses should override this to return the
Trigger.getContinuationTrigger() of this Trigger . |
Instant |
getWatermarkThatGuaranteesFiring(BoundedWindow window)
For internal use only; no backwards-compatibility guarantees.
|
static AfterFirst |
of(java.util.List<Trigger> triggers)
Returns an
AfterFirst Trigger with the given subtriggers. |
static AfterFirst |
of(Trigger.OnceTrigger... triggers)
Returns an
AfterFirst Trigger with the given subtriggers. |
java.lang.String |
toString() |
getContinuationTrigger, mayFinish
equals, hashCode, isCompatible, orFinally, subTriggers
public static AfterFirst of(Trigger.OnceTrigger... triggers)
AfterFirst
Trigger
with the given subtriggers.public static AfterFirst of(java.util.List<Trigger> triggers)
AfterFirst
Trigger
with the given subtriggers.public Instant getWatermarkThatGuaranteesFiring(BoundedWindow window)
Trigger
Returns a bound in event time by which this trigger would have fired at least once for a given window had there been input data.
For triggers that do not fire based on the watermark advancing, returns BoundedWindow.TIMESTAMP_MAX_VALUE
.
This estimate may be used, for example, to determine that there are no elements in a side-input window, which causes the default value to be used instead.
getWatermarkThatGuaranteesFiring
in class Trigger
protected Trigger.OnceTrigger getContinuationTrigger(java.util.List<Trigger> continuationTriggers)
Trigger
Trigger.getContinuationTrigger()
of this Trigger
. For convenience, this is provided the continuation trigger of each of the
sub-triggers in the same order as Trigger.subTriggers
.getContinuationTrigger
in class Trigger
continuationTriggers
- contains the result of Trigger.getContinuationTrigger()
on each of
the subTriggers
in the same order.