producer batch scripts now report an error when the producer/verb is unknown
[mir.git] / source / mircoders / global / JobQueue.java
index eb68a34..326f702 100755 (executable)
@@ -193,11 +193,14 @@ public class JobQueue {
   }
 
   public interface Job {
+    /**
+     * This method should cause the run() method to terminate as soon as
+     * possible.
+     */
     void abort();
 
     /**
-     *
-     *
+     * This method should perform the actions associated with the job.
      * @return <code>true</code> if terminated normally, <code>false</code> if aborted
      */
     boolean run();