if (!useExporter) return;
this.queue = new RootDeviceExportingQueue();
this.producerDeviceToExport = new RootDeviceListener(queue);
producerDeviceToExport.activate();
consumerDeviceToExport = new ThreadExporter(queue);
new Thread(consumerDeviceToExport, "upnp.basedriver.Exporter").start();
}