Interface FilterCondition.Context
-
- Enclosing interface:
- FilterCondition
public static interface FilterCondition.ContextContext for generating expressions such as e.g.CURRENT_WATERMARKorSTREAMRECORD_TIMESTAMP.- See Also:
ProcessFunction.Context
-
-
Field Summary
Fields Modifier and Type Field Description static FilterCondition.ContextINVALID_CONTEXT
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static FilterCondition.Contextof(org.apache.flink.streaming.api.functions.KeyedProcessFunction.Context context)static FilterCondition.Contextof(org.apache.flink.streaming.api.functions.ProcessFunction.Context context)org.apache.flink.streaming.api.TimerServicetimerService()ATimerServicefor querying time and registering timers.Longtimestamp()Timestamp of the element currently being processed or timestamp of a firing timer.
-
-
-
Field Detail
-
INVALID_CONTEXT
static final FilterCondition.Context INVALID_CONTEXT
-
-
Method Detail
-
timestamp
Long timestamp()
Timestamp of the element currently being processed or timestamp of a firing timer.This might be
null, depending on the stream's watermark strategy.
-
timerService
org.apache.flink.streaming.api.TimerService timerService()
ATimerServicefor querying time and registering timers.
-
of
static FilterCondition.Context of(org.apache.flink.streaming.api.functions.KeyedProcessFunction.Context context)
-
of
static FilterCondition.Context of(org.apache.flink.streaming.api.functions.ProcessFunction.Context context)
-
-