4041424344454647484950
System.out.println("Hit enter to stop."); while (true) { char c = (char) System.in.read(); if (c == '\n') { System.out.println("Shuting down"); dispatcher.stop(); stopPrintStatistics(); return; } } } finally {
4243444546474849505152