Class AfterPane
java.lang.Object
org.apache.beam.sdk.transforms.windowing.Trigger
org.apache.beam.sdk.transforms.windowing.Trigger.OnceTrigger
org.apache.beam.sdk.transforms.windowing.AfterPane
- All Implemented Interfaces:
Serializable
A
Trigger
that fires at some point after a specified number of input elements have
arrived.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.beam.sdk.transforms.windowing.Trigger
Trigger.OnceTrigger
-
Field Summary
Fields inherited from class org.apache.beam.sdk.transforms.windowing.Trigger
subTriggers
-
Method Summary
Modifier and TypeMethodDescriptionstatic AfterPane
elementCountAtLeast
(int countElems) Creates a trigger that fires when the pane contains at leastcountElems
elements.boolean
protected Trigger.OnceTrigger
getContinuationTrigger
(List<Trigger> continuationTriggers) Subclasses should override this to return theTrigger.getContinuationTrigger()
of thisTrigger
.int
The number of elements after which this trigger may fire.For internal use only; no backwards-compatibility guarantees.int
hashCode()
boolean
isCompatible
(Trigger other) For internal use only; no backwards-compatibility guarantees.toString()
Methods inherited from class org.apache.beam.sdk.transforms.windowing.Trigger.OnceTrigger
getContinuationTrigger, mayFinish
Methods inherited from class org.apache.beam.sdk.transforms.windowing.Trigger
orFinally, subTriggers
-
Method Details
-
getElementCount
public int getElementCount()The number of elements after which this trigger may fire. -
elementCountAtLeast
Creates a trigger that fires when the pane contains at leastcountElems
elements. -
isCompatible
Description copied from class:Trigger
For internal use only; no backwards-compatibility guarantees.Returns whether this performs the same triggering as the given
Trigger
.- Overrides:
isCompatible
in classTrigger
-
getWatermarkThatGuaranteesFiring
Description copied from class:Trigger
For internal use only; no backwards-compatibility guarantees.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.
- Specified by:
getWatermarkThatGuaranteesFiring
in classTrigger
-
getContinuationTrigger
Description copied from class:Trigger
Subclasses should override this to return theTrigger.getContinuationTrigger()
of thisTrigger
. For convenience, this is provided the continuation trigger of each of the sub-triggers in the same order asTrigger.subTriggers
.- Specified by:
getContinuationTrigger
in classTrigger
- Parameters:
continuationTriggers
- contains the result ofTrigger.getContinuationTrigger()
on each of thesubTriggers
in the same order.
-
toString
-
equals
-
hashCode
public int hashCode()
-