socket.io-server-java icon indicating copy to clipboard operation
socket.io-server-java copied to clipboard

How to produce messages with packet type id like 420 430

Open Al3x4n opened this issue 1 year ago • 0 comments

How to produce messages with packet type id like 420 430? I do send cmd from server to socket.io client like this but nothing response socket.send("start", start_cmd.toString(), new SocketIoSocket.ReceivedByRemoteAcknowledgementCallback() { @Override public void onReceivedByRemote(Object... os) { System.out.println("Start cmd response: " + os); } });

But when I use this cmd, client does received (without callback) socket.send("start", start_cmd.toString())

Al3x4n avatar Apr 20 '24 19:04 Al3x4n