JAL-4199 Remove taskRestarted from task events
authorMateusz Warowny <mmzwarowny@dundee.ac.uk>
Tue, 4 Jul 2023 08:20:14 +0000 (10:20 +0200)
committerMateusz Warowny <mmzwarowny@dundee.ac.uk>
Wed, 12 Jul 2023 14:25:05 +0000 (16:25 +0200)
src/jalview/ws2/actions/api/TaskEventListener.java
src/jalview/ws2/gui/AlignmentServiceGuiHandler.java
src/jalview/ws2/gui/AnnotationServiceGuiHandler.java

index 94de9d0..f48272a 100644 (file)
@@ -63,15 +63,6 @@ public interface TaskEventListener<T>
    */
   void taskException(TaskI<T> source, Exception e);
 
-  /**
-   * Invoked when the task had been restarted. This event is only applicable to
-   * restartable tasks and will precede each {@link #taskStarted} after the
-   * first one.
-   * 
-   * @param source
-   *          task this event originates from
-   */
-  void taskRestarted(TaskI<T> source);
 
   /**
    * Invoked when the status of a sub-job has changed.
index fd1d0ad..caa0573 100644 (file)
@@ -230,12 +230,6 @@ class AlignmentServiceGuiHandler
   }
 
   @Override
-  public void taskRestarted(TaskI<AlignmentResult> source)
-  {
-    // alignment services are not restartable
-  }
-
-  @Override
   public void subJobStatusChanged(TaskI<AlignmentResult> source, JobI job, JobStatus status)
   {
     int i = ArrayUtils.indexOf(jobs, job);
index 43e2680..32bc4b1 100644 (file)
@@ -95,12 +95,6 @@ public class AnnotationServiceGuiHandler
   }
 
   @Override
-  public void taskRestarted(TaskI<AnnotationResult> source)
-  {
-
-  }
-
-  @Override
   public void subJobStatusChanged(TaskI<AnnotationResult> source, JobI job, JobStatus status)
   {