Uses of Interface
org.apache.flink.cep.functions.PatternProcessFunction.Context
-
Packages that use PatternProcessFunction.Context Package Description org.apache.flink.cep.functions org.apache.flink.cep.functions.adaptors -
-
Uses of PatternProcessFunction.Context in org.apache.flink.cep.functions
Methods in org.apache.flink.cep.functions with parameters of type PatternProcessFunction.Context Modifier and Type Method Description abstract void
PatternProcessFunction. processMatch(Map<String,List<IN>> match, PatternProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)
Generates resulting elements given a map of detected pattern events.void
TimedOutPartialMatchHandler. processTimedOutMatch(Map<String,List<IN>> match, PatternProcessFunction.Context ctx)
Called for every timed out partial match (due toPattern.within(Duration)
). -
Uses of PatternProcessFunction.Context in org.apache.flink.cep.functions.adaptors
Methods in org.apache.flink.cep.functions.adaptors with parameters of type PatternProcessFunction.Context Modifier and Type Method Description void
PatternFlatSelectAdapter. processMatch(Map<String,List<IN>> match, PatternProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)
void
PatternSelectAdapter. processMatch(Map<String,List<IN>> match, PatternProcessFunction.Context ctx, org.apache.flink.util.Collector<OUT> out)
void
PatternTimeoutFlatSelectAdapter. processTimedOutMatch(Map<String,List<IN>> match, PatternProcessFunction.Context ctx)
void
PatternTimeoutSelectAdapter. processTimedOutMatch(Map<String,List<IN>> match, PatternProcessFunction.Context ctx)
-