Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/4728#discussion_r141318588
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMasterGateway.java
---
@@ -227,5 +229,19 @@ void failSlot(final ResourceID taskManagerId,
*/
void heartbeatFromResourceManager(final ResourceID resourceID);
+ /**
+ * Request the details of the executed job.
+ *
+ * @param timeout for the rpc call
+ * @return Future details of the executed job
+ */
CompletableFuture<JobDetails> requestJobDetails(@RpcTimeout Time
timeout);
--- End diff --
`JobDetails` are independent of the `ExecutionGraphCache` and still needed.
I simply added java docs.
---