[Java] Remove java api sub package from test module (#8853)

This commit is contained in:
chaokunyang
2020-06-11 14:59:45 +08:00
committed by GitHub
parent 53712d2ef7
commit 700d81fa20
60 changed files with 61 additions and 80 deletions
@@ -3,7 +3,6 @@ package io.ray.streaming.message;
import java.io.Serializable;
import java.util.Objects;
public class Record<T> implements Serializable {
protected transient String stream;
protected T value;
@@ -2,7 +2,6 @@ package io.ray.streaming.operator;
import io.ray.streaming.message.Record;
public interface OneInputOperator<T> extends Operator {
void processElement(Record<T> record) throws Exception;
@@ -2,7 +2,6 @@ package io.ray.streaming.operator;
import io.ray.streaming.message.Record;
public interface TwoInputOperator<T, O> extends Operator {
void processElement(Record<T> record1, Record<O> record2);
@@ -5,7 +5,6 @@ import io.ray.streaming.message.Record;
import io.ray.streaming.operator.OneInputOperator;
import io.ray.streaming.operator.StreamOperator;
public class MapOperator<T, R> extends StreamOperator<MapFunction<T, R>> implements
OneInputOperator<T> {
@@ -5,7 +5,6 @@ import io.ray.streaming.message.Record;
import io.ray.streaming.operator.OneInputOperator;
import io.ray.streaming.operator.StreamOperator;
public class SinkOperator<T> extends StreamOperator<SinkFunction<T>> implements
OneInputOperator<T> {