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

io.ray.streaming.api.collector.Collector Maven / Gradle / Ivy

package io.ray.streaming.api.collector;

/**
 * The collector that collects data from an upstream operator, and emits data to downstream
 * operators.
 *
 * @param  Type of the data to collect.
 */
public interface Collector {

  void collect(T value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy