/** {@inheritDoc} It creates the MaryClient and starts the synthesisQueue thread. */
 @Override
 public void connect(final ConnectionInformation info) throws IOException {
   processor = MaryClient.getMaryClient();
   synthesisQueue = new SynthesisQueue(this);
   synthesisQueue.addListener(this);
   synthesisQueue.setProcessor(processor);
   synthesisQueue.setRequestParameters(maryRequestParameters);
   synthesisQueue.start();
 }