Example #1
0
 /**
  * Used to send the abort command to the tracker.
  *
  * <p>This causes the tracker to stop what it is currently doing.
  *
  * @return "Tracker aborted." if the abort was successful
  * @throws TrackerException thrown if not connected
  */
 String abort() throws TrackerException {
   isConnected();
   trk.abort();
   return "Tracker aborted.\n";
 }