Tabnine Logo
ComputationState.getEvent
Code IndexAdd Tabnine to your IDE (free)

How to use
getEvent
method
in
org.apache.flink.cep.nfa.ComputationState

Best Java code snippets using org.apache.flink.cep.nfa.ComputationState.getEvent (Showing top 5 results out of 315)

origin: org.apache.flink/flink-cep_2.10

NFAStateNameHandler.getOriginalNameFromInternal(
    computationState.getPreviousState().getName()),
computationState.getEvent(),
computationState.getTimestamp(),
computationState.getCounter(),
origin: org.apache.flink/flink-cep_2.10

convertedStates.get(currentName),
previousState,
readState.getEvent(),
0,
readState.getTimestamp(),
origin: org.apache.flink/flink-cep_2.10

computationState.getEvent(),
computationState.getTimestamp(),
computationState.getCounter());
  NFAStateNameHandler.getOriginalNameFromInternal(
      newComputationState.getPreviousState().getName()),
  newComputationState.getEvent(),
  newComputationState.getTimestamp(),
  computationState.getCounter());
  NFAStateNameHandler.getOriginalNameFromInternal(
      newComputationState.getPreviousState().getName()),
  newComputationState.getEvent(),
  newComputationState.getTimestamp(),
  computationState.getCounter());
  NFAStateNameHandler.getOriginalNameFromInternal(
      state.getPreviousState().getName()),
  state.getEvent(),
  state.getTimestamp(),
  state.getCounter());
origin: org.apache.flink/flink-cep_2.10

@Override
public void serialize(NFA<T> record, DataOutputView target) throws IOException {
  serializeStates(record.states, target);
  target.writeLong(record.windowTime);
  target.writeBoolean(record.handleTimeout);
  sharedBufferSerializer.serialize(record.eventSharedBuffer, target);
  target.writeInt(record.computationStates.size());
  StringSerializer stateNameSerializer = StringSerializer.INSTANCE;
  LongSerializer timestampSerializer = LongSerializer.INSTANCE;
  DeweyNumber.DeweyNumberSerializer versionSerializer = new DeweyNumber.DeweyNumberSerializer();
  for (ComputationState<T> computationState: record.computationStates) {
    stateNameSerializer.serialize(computationState.getState().getName(), target);
    stateNameSerializer.serialize(computationState.getPreviousState() == null
        ? null : computationState.getPreviousState().getName(), target);
    timestampSerializer.serialize(computationState.getTimestamp(), target);
    versionSerializer.serialize(computationState.getVersion(), target);
    timestampSerializer.serialize(computationState.getStartTimestamp(), target);
    target.writeInt(computationState.getCounter());
    if (computationState.getEvent() == null) {
      target.writeBoolean(false);
    } else {
      target.writeBoolean(true);
      eventSerializer.serialize(computationState.getEvent(), target);
    }
  }
}
origin: org.apache.flink/flink-cep_2.10

            edge.getTargetState(),
            computationState.getPreviousState(),
            computationState.getEvent(),
            computationState.getCounter(),
            computationState.getTimestamp(),
      final State<T> previousState = computationState.getPreviousState();
      final T previousEvent = computationState.getEvent();
if (computationState.getEvent() != null) {
      computationState.getEvent(),
      computationState.getTimestamp(),
      computationState.getCounter());
org.apache.flink.cep.nfaComputationStategetEvent

Popular methods of ComputationState

  • <init>
  • createStartState
  • createState
  • getCurrentStateName
  • getStartTimestamp
  • getVersion
  • equals
  • getPreviousBufferEntry
  • getStartEventID
  • getConditionContext
  • getCounter
  • getPreviousState
  • getCounter,
  • getPreviousState,
  • getState,
  • getTimestamp,
  • isFinalState,
  • isStartState,
  • isStopState

Popular in Java

  • Reading from database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • getResourceAsStream (ClassLoader)
  • getExternalFilesDir (Context)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now