Codota Logo
CompositeItemWriter.setIgnoreItemStream
Code IndexAdd Codota to your IDE (free)

How to use
setIgnoreItemStream
method
in
org.springframework.batch.item.support.CompositeItemWriter

Best Java code snippets using org.springframework.batch.item.support.CompositeItemWriter.setIgnoreItemStream (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew LinkedList()
  • Codota IconCollections.emptyList()
  • Codota Iconnew ArrayList()
  • Smart code suggestions by Codota
}
origin: spring-projects/spring-batch

  /**
   * Returns a fully constructed {@link CompositeItemWriter}.
   *
   * @return a new {@link CompositeItemWriter}
   */
  public CompositeItemWriter<T> build() {
    Assert.notNull(delegates, "A list of delegates is required.");
    Assert.notEmpty(delegates, "The delegates list must have one or more delegates.");

    CompositeItemWriter<T> writer = new CompositeItemWriter<>();
    writer.setDelegates(this.delegates);
    writer.setIgnoreItemStream(this.ignoreItemStream);
    return writer;
  }
}
origin: apache/servicemix-bundles

  /**
   * Returns a fully constructed {@link CompositeItemWriter}.
   *
   * @return a new {@link CompositeItemWriter}
   */
  public CompositeItemWriter<T> build() {
    Assert.notNull(delegates, "A list of delegates is required.");
    Assert.notEmpty(delegates, "The delegates list must have one or more delegates.");

    CompositeItemWriter<T> writer = new CompositeItemWriter<>();
    writer.setDelegates(this.delegates);
    writer.setIgnoreItemStream(this.ignoreItemStream);
    return writer;
  }
}
org.springframework.batch.item.supportCompositeItemWritersetIgnoreItemStream

Javadoc

Establishes the policy whether to call the open, close, or update methods for the item writer delegates associated with the CompositeItemWriter.

Popular methods of CompositeItemWriter

  • setDelegates
    The list of item writers to use as delegates. Items are written to each of the delegates.
  • <init>
  • open
  • write

Popular in Java

  • Parsing JSON documents to java classes using gson
  • setScale (BigDecimal)
  • onCreateOptionsMenu (Activity)
  • getApplicationContext (Context)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • Properties (java.util)
    The Properties class represents a persistent set of properties. The Properties can be saved to a st
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • TimerTask (java.util)
    A task that can be scheduled for one-time or repeated execution by a Timer.
  • JLabel (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now