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

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 - 2024 Weber Informatics LLC | Privacy Policy