Package io.github.dornol.excelkit.excel
Interface WriteRowCallback<T>
- Type Parameters:
T- The type of the row data
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A functional interface for consuming row data during Excel export.
Used as a callback during streaming write in ExcelWriter.write(java.util.stream.Stream, WriteRowCallback),
typically for tracking, logging, progress, or collecting metadata.
- Since:
- 2025-07-19
-
Method Summary
-
Method Details
-
accept
Called for each row processed during the Excel writing process.- Parameters:
rowData- The row data objectcursor- The current cursor with row/sheet position information
-