io.ray.streaming.client.JobClient Maven / Gradle / Ivy
package io.ray.streaming.client;
import io.ray.streaming.jobgraph.JobGraph;
import java.util.Map;
/** Interface of the job client. */
public interface JobClient {
/**
* Submit job with logical plan to run.
*
* @param jobGraph The logical plan.
*/
void submit(JobGraph jobGraph, Map conf);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy