[ 
https://issues.apache.org/jira/browse/FLINK-16960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Zhu Zhu updated FLINK-16960:
----------------------------
    Description: 
{code}
interface Topology {
...
  Iterable<PipelinedRegion> getAllPipelinedRegions();

  PipelinedRegion getPipelinedRegionOfVertex(VID vertexId);
...
}

interface PipelinedRegion {
  Iterable<V> getVertices();

  V getVertex(VID vertexId);

  Iterable<R> getConsumedResults();
}

{code}

 

  was:
{code}
interface Topology {
...
  Iterable<PipelinedRegion> getAllPipelinedRegions();

  PipelinedRegion getPipelinedRegionOfVertex(VID vertexId);
...
}

interface PipelinedRegion {
  Iterable<V> getVertices();

  Iterable<V> getVertex(VID vertexId);

  Iterable<R> getConsumedResults();
}

{code}

 


> Add PipelinedRegion Interface to Topology
> -----------------------------------------
>
>                 Key: FLINK-16960
>                 URL: https://issues.apache.org/jira/browse/FLINK-16960
>             Project: Flink
>          Issue Type: Sub-task
>            Reporter: Gary Yao
>            Assignee: Gary Yao
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.11.0
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> {code}
> interface Topology {
> ...
>   Iterable<PipelinedRegion> getAllPipelinedRegions();
>   PipelinedRegion getPipelinedRegionOfVertex(VID vertexId);
> ...
> }
> interface PipelinedRegion {
>   Iterable<V> getVertices();
>   V getVertex(VID vertexId);
>   Iterable<R> getConsumedResults();
> }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to