org.frozenarc.datapipe.writer.WriterFuture 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.writer;
import java.util.concurrent.CompletableFuture;
import java.util.function.Consumer;
/*
* Author: mpanchal
* Date: 19-12-2023
*/
public interface WriterFuture {
CompletableFuture getFuture(StreamWriter writer, Consumer expConsumer);
}