public abstract class ProcessFunction.Context extends Object
ProcessFunction.processElement(Object, Context, Collector)
or ProcessFunction.onTimer(long, OnTimerContext, Collector)
.Constructor and Description |
---|
Context() |
Modifier and Type | Method and Description |
---|---|
abstract <X> void |
output(OutputTag<X> outputTag,
X value)
Emits a record to the side output identified by the
OutputTag . |
abstract TimerService |
timerService()
A
TimerService for querying time and registering timers. |
abstract Long |
timestamp()
Timestamp of the element currently being processed or timestamp of a firing timer.
|
public abstract Long timestamp()
This might be null
, for example if the time characteristic of your program is
set to TimeCharacteristic.ProcessingTime
.
public abstract TimerService timerService()
TimerService
for querying time and registering timers.Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.