arjun4084346 commented on a change in pull request #3027:
URL: https://github.com/apache/incubator-gobblin/pull/3027#discussion_r443075074



##########
File path: 
gobblin-runtime/src/main/java/org/apache/gobblin/runtime/api/JobCatalogListener.java
##########
@@ -91,4 +94,18 @@ public Void apply(JobCatalogListener listener) {
     }
   }
 
+  public static class CancelJobCallback extends Callback<JobCatalogListener, 
Void> {
+    private final JobSpec _cancelJob;
+
+    public CancelJobCallback(JobSpec cancelJob) {
+      super(Objects.toStringHelper("onCancelJob")
+          .add("cancelJob", cancelJob).toString());
+      _cancelJob = cancelJob;
+    }
+
+    @Override public Void apply(JobCatalogListener listener) {

Review comment:
       you mean a line gap b/w L106 and L107?




----------------------------------------------------------------
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:
us...@infra.apache.org


Reply via email to