/** Add to the tail of the queue. */
 public void addLast(Servicable servicable) throws TooManyTasksException, QueueClosedException {
   taskQueue.addLast(servicable);
 }