/** The background thread that checks for session timeouts and shutdown. */
  public void run() {

    // Loop until the termination semaphore is set
    while (!threadDone) {
      threadSleep();
      processExpires();
    }
  }