org.frozenarc.datapipe.reader.ReaderFuture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-pipe Show documentation
Show all versions of data-pipe Show documentation
Processing data while streaming
The newest version!
package org.frozenarc.datapipe.reader;
import java.util.concurrent.CompletableFuture;
import java.util.function.Consumer;
/*
* Author: mpanchal
* Date: 19-12-2023
*/
public interface ReaderFuture {
CompletableFuture getFuture(StreamReader reader, Consumer expConsumer);
}