Package | Description |
---|---|
org.apache.flink.cep.nfa |
Modifier and Type | Method and Description |
---|---|
State<T> |
ComputationState.getPreviousState() |
State<T> |
StateTransition.getSourceState() |
State<T> |
ComputationState.getState() |
State<T> |
StateTransition.getTargetState() |
Modifier and Type | Method and Description |
---|---|
Set<State<T>> |
NFA.getStates() |
Modifier and Type | Method and Description |
---|---|
void |
State.addIgnore(State<T> targetState,
IterativeCondition<T> condition) |
void |
State.addProceed(State<T> targetState,
IterativeCondition<T> condition) |
void |
NFA.addState(State<T> state) |
void |
State.addStateTransition(StateTransitionAction action,
State<T> targetState,
IterativeCondition<T> condition) |
void |
State.addTake(State<T> targetState,
IterativeCondition<T> condition) |
static <T> ComputationState<T> |
ComputationState.createStartState(NFA<T> nfa,
State<T> state) |
static <T> ComputationState<T> |
ComputationState.createStartState(NFA<T> nfa,
State<T> state,
DeweyNumber version) |
static <T> ComputationState<T> |
ComputationState.createState(NFA<T> nfa,
State<T> currentState,
State<T> previousState,
T event,
int counter,
long timestamp,
DeweyNumber version,
long startTimestamp) |
static <T> ComputationState<T> |
ComputationState.createState(NFA<T> nfa,
State<T> currentState,
State<T> previousState,
T event,
int counter,
long timestamp,
DeweyNumber version,
long startTimestamp) |
Modifier and Type | Method and Description |
---|---|
void |
NFA.addStates(Collection<State<T>> newStates) |
Constructor and Description |
---|
StateTransition(State<T> sourceState,
StateTransitionAction action,
State<T> targetState,
IterativeCondition<T> condition) |
StateTransition(State<T> sourceState,
StateTransitionAction action,
State<T> targetState,
IterativeCondition<T> condition) |
Copyright © 2014–2019 The Apache Software Foundation. All rights reserved.