use of org.apache.flink.runtime.scheduler.strategy.TestingSchedulingPipelinedRegion in project flink by apache.
the class ConsumerRegionGroupExecutionViewMaintainerTest method createProducerAndConsumer.
private void createProducerAndConsumer() {
TestingSchedulingExecutionVertex producer = TestingSchedulingExecutionVertex.newBuilder().build();
TestingSchedulingExecutionVertex consumer = TestingSchedulingExecutionVertex.newBuilder().build();
producerRegion = new TestingSchedulingPipelinedRegion(Collections.singleton(producer));
consumerRegion = new TestingSchedulingPipelinedRegion(Collections.singleton(consumer));
}
Aggregations