spring-batch ItemWriteListener 源码

  • 2022-08-16
  • 浏览 (367)

spring-batch ItemWriteListener 代码

文件路径:/spring-batch-core/src/main/java/org/springframework/batch/core/ItemWriteListener.java

/*
 * Copyright 2006-2022 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.batch.core;

import java.util.List;

import org.springframework.batch.core.scope.context.ChunkContext;
import org.springframework.batch.item.ItemWriter;

/**
 * <p>
 * Listener interface for the writing of items. Implementations of this interface are
 * notified before, after, and in case of any exception thrown while writing a list of
 * items.
 * </p>
 *
 * <p>
 * <em>Note: </em> This listener is designed to work around the lifecycle of an item. This
 * means that each method should be called once within the lifecycle of an item and that,
 * in fault-tolerant scenarios, any transactional work that is done in one of these
 * methods is rolled back and not re-applied. Because of this, it is recommended to not
 * perform any logic that participates in a transaction when using this listener.
 * </p>
 *
 * @author Lucas Ward
 * @author Mahmoud Ben Hassine
 *
 */
public interface ItemWriteListener<S> extends StepListener {

	/**
	 * Called before {@link ItemWriter#write(java.util.List)}
	 * @param items to be written
	 */
	default void beforeWrite(List<? extends S> items) {
	}

	/**
	 * Called after {@link ItemWriter#write(java.util.List)}. This is called before any
	 * transaction is committed, and before
	 * {@link ChunkListener#afterChunk(ChunkContext)}.
	 * @param items written items
	 */
	default void afterWrite(List<? extends S> items) {
	}

	/**
	 * Called if an error occurs while trying to write. Called inside a transaction, but
	 * the transaction will normally be rolled back. There is no way to identify from this
	 * callback which of the items (if any) caused the error.
	 * @param exception thrown from {@link ItemWriter}
	 * @param items attempted to be written.
	 */
	default void onWriteError(Exception exception, List<? extends S> items) {
	}

}

相关信息

spring-batch 源码目录

相关文章

spring-batch BatchStatus 源码

spring-batch ChunkListener 源码

spring-batch DefaultJobKeyGenerator 源码

spring-batch Entity 源码

spring-batch ExitStatus 源码

spring-batch ItemProcessListener 源码

spring-batch ItemReadListener 源码

spring-batch Job 源码

spring-batch JobExecution 源码

spring-batch JobExecutionException 源码

0  赞