Tabnine Logo
CompositeItemWriteListener.afterWrite
Code IndexAdd Tabnine to your IDE (free)

How to use
afterWrite
method
in
org.springframework.batch.core.listener.CompositeItemWriteListener

Best Java code snippets using org.springframework.batch.core.listener.CompositeItemWriteListener.afterWrite (Showing top 6 results out of 315)

origin: spring-projects/spring-batch

/**
 * @see ItemWriteListener#afterWrite(List)
 */
@Override
public void afterWrite(List<? extends S> items) {
  try {
    itemWriteListener.afterWrite(items);
  }
  catch (RuntimeException e) {
    throw new StepListenerFailedException("Error in afterWrite.", getTargetException(e));
  }
}
origin: spring-projects/spring-batch

@Test
public void testAfterWrite() {
  List<Object> item = Collections.singletonList(new Object());
  listener.afterWrite(item);
  compositeListener.afterWrite(item);
}
origin: org.springframework.batch/org.springframework.batch.core

/**
 * 
 * @see ItemWriteListener#afterWrite(List)
 */
public void afterWrite(List<? extends S> items) {
  try {
    itemWriteListener.afterWrite(items);
  }
  catch (RuntimeException e) {
    throw new StepListenerFailedException("Error in afterWrite.", e);
  }
}
origin: org.springframework.batch.core/org.motechproject.org.springframework.batch.core

/**
 *
 * @see ItemWriteListener#afterWrite(List)
 */
@Override
public void afterWrite(List<? extends S> items) {
  try {
    itemWriteListener.afterWrite(items);
  }
  catch (RuntimeException e) {
    throw new StepListenerFailedException("Error in afterWrite.", e);
  }
}
origin: org.springframework.batch/spring-batch-core

/**
 * @see ItemWriteListener#afterWrite(List)
 */
@Override
public void afterWrite(List<? extends S> items) {
  try {
    itemWriteListener.afterWrite(items);
  }
  catch (RuntimeException e) {
    throw new StepListenerFailedException("Error in afterWrite.", getTargetException(e));
  }
}
origin: apache/servicemix-bundles

/**
 * @see ItemWriteListener#afterWrite(List)
 */
@Override
public void afterWrite(List<? extends S> items) {
  try {
    itemWriteListener.afterWrite(items);
  }
  catch (RuntimeException e) {
    throw new StepListenerFailedException("Error in afterWrite.", getTargetException(e));
  }
}
org.springframework.batch.core.listenerCompositeItemWriteListenerafterWrite

Javadoc

Call the registered listeners in reverse order, respecting and prioritising those that implement Ordered.

Popular methods of CompositeItemWriteListener

  • beforeWrite
    Call the registered listeners in order, respecting and prioritising those that implement Ordered.
  • onWriteError
    Call the registered listeners in reverse order, respecting and prioritising those that implement Ord
  • register
    Register additional listener.
  • <init>
  • setListeners
    Public setter for the listeners.

Popular in Java

  • Start an intent from android
  • setContentView (Activity)
  • putExtra (Intent)
  • getExternalFilesDir (Context)
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • JOptionPane (javax.swing)
  • 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