mirror of
https://github.com/ProjectSWGCore/forwarder.git
synced 2026-09-11 23:44:59 -04:00
Reverted communication style to old method
This commit is contained in:
+1
-1
Submodule Client Holocore updated: 8aa5f68a1d...78e47b324e
@@ -105,8 +105,8 @@ public class ServerConnectionService extends Service {
|
||||
public ConnectionThread(HolocoreSocket connection) {
|
||||
this.connection = connection;
|
||||
this.lastHeartbeat = new AtomicLong(0);
|
||||
this.thread = new PswgBasicThread("server-connection", () -> run());
|
||||
this.heartbeatThread = new PswgBasicScheduledThread("server-heartbeat", () -> heartbeat());
|
||||
this.thread = new PswgBasicThread("server-connection", this::run);
|
||||
this.heartbeatThread = new PswgBasicScheduledThread("server-heartbeat", this::heartbeat);
|
||||
this.outQueue = new LinkedList<>();
|
||||
this.recvIntentChain = null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user