Added `getSocket()` method to the Manager class

This commit is contained in:
Tristan B. Velloza Kildaire 2021-09-08 22:08:03 +02:00
parent b4bf4d5af5
commit e1c28d9c11
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,11 @@ public final class Watcher : Thread
start();
}
public Socket getSocket()
{
return socket;
}
public void shutdown()
{
running=false;