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