Package app.babylon.table.io
Interface RowStreamMarkable
public interface RowStreamMarkable
Streams rows with support for marking a position and resetting back to it.
-
Method Summary
-
Method Details
-
next
- Throws:
IOException
-
current
Row current() -
mark
void mark(int rowIndex) -
reset
void reset()Reset the stream to the first data row following the row previously marked bymark(int). If no row was marked, resets to the start of the recorded rows.
-