239240241242243244245246247248249
protected void startApplication() { try { keepAliveThread = new CommandMonitorThread( keepAlivePort, new PingCommand(), new StopMonitorCommand(), new ExitCommand(), new HaltCommand() ); keepAliveThread.start(); }
3738394041424344454647
throws Exception { CommandMonitorThread keepAliveThread = new CommandMonitorThread( 0, new PingCommand(), new StopMonitorCommand() ); keepAliveThread.start(); final AtomicBoolean shutDown = new AtomicBoolean(false);