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

io.ray.streaming.operator.SourceOperator Maven / Gradle / Ivy

There is a newer version: 1.10.0
Show newest version
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