io.ray.streaming.operator.SourceOperator Maven / Gradle / Ivy
package io.ray.streaming.operator;
import io.ray.streaming.api.function.impl.SourceFunction.SourceContext;
public interface SourceOperator extends Operator {
void fetch();
SourceContext getSourceContext();
default OperatorType getOpType() {
return OperatorType.SOURCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy