Interface JobInformation
-
- All Known Implementing Classes:
JobGraphJobInformation
public interface JobInformationInformation about the job.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceJobInformation.VertexInformationInformation about a single vertex.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<SlotSharingGroup>getSlotSharingGroups()Returns all slot-sharing groups of the job.JobInformation.VertexInformationgetVertexInformation(JobVertexID jobVertexId)Iterable<JobInformation.VertexInformation>getVertices()
-
-
-
Method Detail
-
getSlotSharingGroups
Collection<SlotSharingGroup> getSlotSharingGroups()
Returns all slot-sharing groups of the job.Attention: The returned slot sharing groups should never be modified (they are indeed mutable)!
- Returns:
- all slot-sharing groups of the job
-
getVertexInformation
JobInformation.VertexInformation getVertexInformation(JobVertexID jobVertexId)
-
getVertices
Iterable<JobInformation.VertexInformation> getVertices()
-
-