Tabnine Logo
SimpleFlow.initializeTransitions
Code IndexAdd Tabnine to your IDE (free)

How to use
initializeTransitions
method
in
org.springframework.batch.core.job.flow.support.SimpleFlow

Best Java code snippets using org.springframework.batch.core.job.flow.support.SimpleFlow.initializeTransitions (Showing top 10 results out of 315)

origin: spring-projects/spring-batch

/**
 * Locate start state and pre-populate data structures needed for execution.
 *
 * @see InitializingBean#afterPropertiesSet()
 */
@Override
public void afterPropertiesSet() throws Exception {
  if (startState == null) {
    initializeTransitions();
  }
}
origin: spring-projects/spring-batch

/**
 * @see Flow#start(FlowExecutor)
 */
@Override
public FlowExecution start(FlowExecutor executor) throws FlowExecutionException {
  if (startState == null) {
    initializeTransitions();
  }
  State state = startState;
  String stateName = state.getName();
  return resume(stateName, executor);
}
origin: apache/servicemix-bundles

/**
 * Locate start state and pre-populate data structures needed for execution.
 *
 * @see InitializingBean#afterPropertiesSet()
 */
@Override
public void afterPropertiesSet() throws Exception {
  if (startState == null) {
    initializeTransitions();
  }
}
origin: org.springframework.batch/spring-batch-core

/**
 * Locate start state and pre-populate data structures needed for execution.
 *
 * @see InitializingBean#afterPropertiesSet()
 */
@Override
public void afterPropertiesSet() throws Exception {
  if (startState == null) {
    initializeTransitions();
  }
}
origin: org.springframework.batch.core/org.motechproject.org.springframework.batch.core

/**
 * Locate start state and pre-populate data structures needed for execution.
 *
 * @see InitializingBean#afterPropertiesSet()
 */
@Override
public void afterPropertiesSet() throws Exception {
  initializeTransitions();
}
origin: org.springframework.batch/org.springframework.batch.core

/**
 * Locate start state and pre-populate data structures needed for execution.
 * 
 * @see InitializingBean#afterPropertiesSet()
 */
public void afterPropertiesSet() throws Exception {
  initializeTransitions();
}
origin: org.springframework.batch.core/org.motechproject.org.springframework.batch.core

/**
 * @see Flow#start(FlowExecutor)
 */
@Override
public FlowExecution start(FlowExecutor executor) throws FlowExecutionException {
  if (startState == null) {
    initializeTransitions();
  }
  State state = startState;
  String stateName = state.getName();
  return resume(stateName, executor);
}
origin: apache/servicemix-bundles

/**
 * @see Flow#start(FlowExecutor)
 */
@Override
public FlowExecution start(FlowExecutor executor) throws FlowExecutionException {
  if (startState == null) {
    initializeTransitions();
  }
  State state = startState;
  String stateName = state.getName();
  return resume(stateName, executor);
}
origin: org.springframework.batch/spring-batch-core

/**
 * @see Flow#start(FlowExecutor)
 */
@Override
public FlowExecution start(FlowExecutor executor) throws FlowExecutionException {
  if (startState == null) {
    initializeTransitions();
  }
  State state = startState;
  String stateName = state.getName();
  return resume(stateName, executor);
}
origin: org.springframework.batch/org.springframework.batch.core

/**
 * @see Flow#start(FlowExecutor)
 */
public FlowExecution start(FlowExecutor executor) throws FlowExecutionException {
  if (startState == null) {
    initializeTransitions();
  }
  State state = startState;
  String stateName = state.getName();
  return resume(stateName, executor);
}
org.springframework.batch.core.job.flow.supportSimpleFlowinitializeTransitions

Javadoc

Analyse the transitions provided and generate all the information needed to execute the flow.

Popular methods of SimpleFlow

  • <init>
    Create a flow with the given name.
  • afterPropertiesSet
    Locate start state and pre-populate data structures needed for execution.
  • getName
    Get the name for this flow.
  • resume
  • setStateTransitions
    Public setter for the stateTransitions.
  • nextState
  • setStateTransitionComparator
  • isFlowContinued
  • getState
  • start

Popular in Java

  • Updating database using SQL prepared statement
  • getSystemService (Context)
  • setRequestProperty (URLConnection)
  • findViewById (Activity)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • 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