Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleSourceReader reading methods
linenumberstrue
interface SourceReader {

    void start() throws IOException;

    CompletableFuture<?> available() throws IOException;


    ReaderStatus emitNext(SourceOutput<E> output) throws IOException;


    void addSplits(List<SplitT> splits) throws IOException;


    List<SplitT> snapshotState();
}

...