tillrohrmann commented on a change in pull request #9936:
[FLINK-14450][runtime] Change SchedulingTopology to extend base topology
URL: https://github.com/apache/flink/pull/9936#discussion_r337572973
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adapter/DefaultSchedulingExecutionVertex.java
##########
@@ -35,21 +32,22 @@
/**
* Default implementation of {@link SchedulingExecutionVertex}.
*/
-class DefaultSchedulingExecutionVertex implements SchedulingExecutionVertex {
+class DefaultSchedulingExecutionVertex
+ implements SchedulingExecutionVertex<DefaultSchedulingExecutionVertex,
DefaultSchedulingResultPartition> {
private final ExecutionVertexID executionVertexId;
- private final List<SchedulingResultPartition> consumedPartitions;
+ private final List<DefaultSchedulingResultPartition> consumedPartitions;
Review comment:
```suggestion
private final List<DefaultSchedulingResultPartition> consumedResults;
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services