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

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

There is a newer version: 1.10.0
Show newest version
package io.ray.streaming.operator;

import io.ray.streaming.message.Record;

public interface OneInputOperator extends Operator {

  void processElement(Record record) throws Exception;

  default OperatorType getOpType() {
    return OperatorType.ONE_INPUT;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy