@Override
  public void start() throws Exception {
    String msg = "Starting speech synthesis server with " + filibusters + " Filibusters";
    LOGGER.info(msg);

    Thread thread = new Thread(dispatcher);
    thread.start();

    LOGGER.info("Started speech synthesis server");
  }
 private void pause() {
   try {
     Thread.sleep(1);
   } catch (InterruptedException e) {
     LOGGER.warn(e.getMessage());
   }
 }