Add TODOs for future reference

This commit is contained in:
Tobias Eidelpes 2020-11-11 17:32:53 +01:00
parent 4edb13e963
commit 29ce5d7875

View File

@ -53,6 +53,7 @@ public class TransferServer implements ITransferServer, Runnable {
shutdown(); shutdown();
} }
new ClientListener(serverSocket, blockingQueue).start(); new ClientListener(serverSocket, blockingQueue).start();
// TODO start consumer thread
this.shell.run(); this.shell.run();
} }
@ -66,6 +67,7 @@ public class TransferServer implements ITransferServer, Runnable {
logger.severe("Error closing serverSocket " + serverSocket.toString()); logger.severe("Error closing serverSocket " + serverSocket.toString());
e.printStackTrace(); e.printStackTrace();
} }
// TODO stop consumer thread(s)
throw new StopShellException(); throw new StopShellException();
} }