All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 - 2024 Weber Informatics LLC | Privacy Policy