io.ray.streaming.operator.TwoInputOperator Maven / Gradle / Ivy
package io.ray.streaming.operator;
import io.ray.streaming.message.Record;
public interface TwoInputOperator extends Operator {
void processElement(Record record1, Record record2);
default OperatorType getOpType() {
return OperatorType.TWO_INPUT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy