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