We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@FunctionalInterface
1 parent cb62d3d commit 910ca1dCopy full SHA for 910ca1d
spring-batch-core/src/main/java/org/springframework/batch/core/step/item/ChunkProcessor.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright 2006-2022 the original author or authors.
+ * Copyright 2006-2025 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -22,8 +22,10 @@
22
/**
23
* Interface defined for processing {@link org.springframework.batch.item.Chunk}s.
24
25
+ * @author Kyeonghoon Lee
26
* @since 2.0
27
*/
28
+@FunctionalInterface
29
public interface ChunkProcessor<I> {
30
31
void process(StepContribution contribution, Chunk<I> chunk) throws Exception;
0 commit comments