io.ray.streaming.api.stream.StreamSink Maven / Gradle / Ivy
package io.ray.streaming.api.stream;
import io.ray.streaming.operator.StreamOperator;
/**
* Represents a sink of the Stream.
*
* @param Type of the input data of this sink.
*/
public abstract class StreamSink extends Stream, T> {
public StreamSink(Stream inputStream, StreamOperator streamOperator) {
super(inputStream, streamOperator);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy