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

io.ray.streaming.api.function.impl.JoinFunction Maven / Gradle / Ivy

package io.ray.streaming.api.function.impl;

import io.ray.streaming.api.function.Function;

/**
 * Interface of join functions.
 *
 * @param  Type of the left input data.
 * @param  Type of the right input data.
 * @param  Type of the output data.
 */
@FunctionalInterface
public interface JoinFunction extends Function {

  R join(T left, O right);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy