Start Listen Thread

This commit is contained in:
senft-lap 2012-11-28 09:52:52 +01:00
parent 57617e3156
commit ec37895f80

View File

@ -44,7 +44,8 @@ public class Node {
this.name = channel.socket().getLocalSocketAddress().toString();
udpListen = new UDPListen();
thread = new Thread(udpListen);
thread = new Thread(udpListen);
thread.start();
LOGGER.log(Level.INFO, "Initialized node {0}", name);
} catch (IOException e) {