Uses of Class
org.apache.flink.cep.nfa.ComputationState
-
Packages that use ComputationState Package Description org.apache.flink.cep.nfa org.apache.flink.cep.nfa.aftermatch -
-
Uses of ComputationState in org.apache.flink.cep.nfa
Fields in org.apache.flink.cep.nfa with type parameters of type ComputationState Modifier and Type Field Description static Comparator<ComputationState>NFAState. COMPUTATION_STATE_COMPARATORMethods in org.apache.flink.cep.nfa that return ComputationState Modifier and Type Method Description static ComputationStateComputationState. createStartState(String state)static ComputationStateComputationState. createStartState(String state, DeweyNumber version)static ComputationStateComputationState. createState(String currentState, NodeId previousEntry, DeweyNumber version, long startTimestamp, long previousTimestamp, EventId startEventID)Methods in org.apache.flink.cep.nfa that return types with arguments of type ComputationState Modifier and Type Method Description Queue<ComputationState>NFAState. getCompletedMatches()Queue<ComputationState>NFAState. getPartialMatches()Method parameters in org.apache.flink.cep.nfa with type arguments of type ComputationState Modifier and Type Method Description voidNFAState. setNewPartialMatches(PriorityQueue<ComputationState> newPartialMatches)Constructor parameters in org.apache.flink.cep.nfa with type arguments of type ComputationState Constructor Description NFAState(Iterable<ComputationState> states)NFAState(Queue<ComputationState> partialMatches, Queue<ComputationState> completedMatches) -
Uses of ComputationState in org.apache.flink.cep.nfa.aftermatch
Method parameters in org.apache.flink.cep.nfa.aftermatch with type arguments of type ComputationState Modifier and Type Method Description voidAfterMatchSkipStrategy. prune(Collection<ComputationState> matchesToPrune, Collection<Map<String,List<EventId>>> matchedResult, SharedBufferAccessor<?> sharedBufferAccessor)Prunes matches/partial matches based on the chosen strategy.
-