mirror of
https://bitbucket.org/projectswg/forwarder.git
synced 2026-01-16 23:04:26 -05:00
Reverted communication style to old method
This commit is contained in:
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