Tabnine Logo
FlowStepBuilder.build
Code IndexAdd Tabnine to your IDE (free)

How to use
build
method
in
org.springframework.batch.core.step.builder.FlowStepBuilder

Best Java code snippets using org.springframework.batch.core.step.builder.FlowStepBuilder.build (Showing top 6 results out of 315)

origin: spring-projects/spring-batch

protected Step createFlowStep() {
  FlowStepBuilder builder = new StepBuilder(name).flow(flow);
  enhanceCommonStep(builder);
  return builder.build();
}
origin: spring-projects/spring-batch

@Bean
public Step flowStep() throws Exception {
  return steps.get("flowStep").flow(simpleFlow()).build();
}
origin: spring-projects/spring-batch

@Bean
public Job concurrentJob() {
  Flow splitFlow = new FlowBuilder<Flow>("splitflow").split(new SimpleAsyncTaskExecutor()).add(flow(), flow(), flow(), flow(), flow(), flow(), flow()).build();
  return jobBuilderFactory.get("concurrentJob")
      .start(firstStep())
      .next(stepBuilderFactory.get("splitFlowStep")
          .flow(splitFlow)
          .build())
      .next(lastStep())
      .build();
}
origin: org.springframework.batch/spring-batch-core

protected Step createFlowStep() {
  FlowStepBuilder builder = new StepBuilder(name).flow(flow);
  enhanceCommonStep(builder);
  return builder.build();
}
origin: org.springframework.batch.core/org.motechproject.org.springframework.batch.core

protected Step createFlowStep() {
  FlowStepBuilder builder = new StepBuilder(name).flow(flow);
  enhanceCommonStep(builder);
  return builder.build();
}
origin: apache/servicemix-bundles

protected Step createFlowStep() {
  FlowStepBuilder builder = new StepBuilder(name).flow(flow);
  enhanceCommonStep(builder);
  return builder.build();
}
org.springframework.batch.core.step.builderFlowStepBuilderbuild

Javadoc

Build a step that executes the flow provided, normally composed of other steps. The flow is not executed in a transaction because the individual steps are supposed to manage their own transaction state.

Popular methods of FlowStepBuilder

  • <init>
    Create a new builder initialized with any properties in the parent. The parent is copied, so it can
  • flow
    Provide a flow to execute during the step.
  • getName

Popular in Java

  • Reading from database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Collectors (java.util.stream)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top plugins for Android Studio
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