io.ray.streaming.api.function.impl.KeyFunction Maven / Gradle / Ivy
package io.ray.streaming.api.function.impl;
import io.ray.streaming.api.function.Function;
/**
* Interface of key-by functions.
*
* @param Type of the input data.
* @param Type of the key-by field.
*/
@FunctionalInterface
public interface KeyFunction extends Function {
K keyBy(T value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy