Uses of Class
org.apache.flink.cep.nfa.ComputationState
Packages that use ComputationState
-
Uses of ComputationState in org.apache.flink.cep.nfa
Fields in org.apache.flink.cep.nfa with type parameters of type ComputationStateModifier and TypeFieldDescriptionstatic final Comparator<ComputationState>NFAState.COMPUTATION_STATE_COMPARATORMethods in org.apache.flink.cep.nfa that return ComputationStateModifier and TypeMethodDescriptionstatic 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 ComputationStateMethod parameters in org.apache.flink.cep.nfa with type arguments of type ComputationStateModifier and TypeMethodDescriptionvoidNFAState.setNewPartialMatches(PriorityQueue<ComputationState> newPartialMatches) Constructor parameters in org.apache.flink.cep.nfa with type arguments of type ComputationStateModifierConstructorDescriptionNFAState(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 ComputationStateModifier and TypeMethodDescriptionvoidAfterMatchSkipStrategy.prune(Collection<ComputationState> matchesToPrune, Collection<Map<String, List<EventId>>> matchedResult, SharedBufferAccessor<?> sharedBufferAccessor) Prunes matches/partial matches based on the chosen strategy.