io.ray.streaming.operator.OneInputOperator Maven / Gradle / Ivy
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