Threads.startThread(serverMonitorRunnable, "Monitor-1");
final Runnable httpServerMonitorRunnable = new Runnable() {
@Override
public void run() {
final HttpServerMonitor httpServerMonitor = new HttpServerMonitor();
httpServerMonitor.setTarget(system);
httpServerMonitor.listen();
}
};
Threads.startThread(httpServerMonitorRunnable, "Monitor-2");
}
}