Uses of Class
org.apache.flink.cep.nfa.State
-
Packages that use State Package Description org.apache.flink.cep.nfa -
-
Uses of State in org.apache.flink.cep.nfa
Methods in org.apache.flink.cep.nfa that return State Modifier and Type Method Description State<T>
StateTransition. getSourceState()
State<T>
StateTransition. getTargetState()
Methods in org.apache.flink.cep.nfa that return types with arguments of type State Modifier and Type Method Description Collection<State<T>>
NFA. getStates()
Methods in org.apache.flink.cep.nfa with parameters of type State Modifier and Type Method Description void
State. addIgnore(State<T> targetState, IterativeCondition<T> condition)
void
State. addProceed(State<T> targetState, IterativeCondition<T> condition)
void
State. addStateTransition(StateTransitionAction action, State<T> targetState, IterativeCondition<T> condition)
void
State. addTake(State<T> targetState, IterativeCondition<T> condition)
Constructors in org.apache.flink.cep.nfa with parameters of type State Constructor Description StateTransition(State<T> sourceState, StateTransitionAction action, State<T> targetState, IterativeCondition<T> condition)
Constructor parameters in org.apache.flink.cep.nfa with type arguments of type State Constructor Description NFA(Collection<State<T>> validStates, Map<String,Long> windowTimes, long windowTime, boolean handleTimeout)
-