io.ray.streaming.api.function.impl.FlatMapFunction Maven / Gradle / Ivy
package io.ray.streaming.api.function.impl;
import io.ray.streaming.api.collector.Collector;
import io.ray.streaming.api.function.Function;
/**
* Interface of flat-map functions.
*
* @param Type of the input data.
* @param Type of the output data.
*/
@FunctionalInterface
public interface FlatMapFunction extends Function {
void flatMap(T value, Collector collector);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy