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