*/
public ScopeServices(final SortedSet<ScopeService> requiredServices, final int port,
final boolean manualConnect) throws IOException {
this.requiredServices.addAll(requiredServices);
tagCounter = new AtomicInteger();
stpThread = new StpThread(port, this, new ScopeEventHandler(this), manualConnect);
}