Initialize thread

This commit is contained in:
Tristan B. Kildaire 2020-04-20 18:50:00 +02:00
parent 8978f057a3
commit 11e3a3a2f9
1 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,10 @@ public class BesterListener : Thread
this(BesterServer besterServer)
{
/* Set the function address to be called as the worker function */
super(run);
/* Set this listener's BesterServer */
this.server = besterServer;
}