socket.io-client-java
socket.io-client-java copied to clipboard
Full-featured Socket.IO Client Library for Java, which is compatible with Socket.IO v1.0 and later.
I connected from android client using socket.connect() it returned me `socket.id "Zhy3pyqFrJrAJtjUAAAT"` When app is killed and opened again, can i set this ID in socket.id and start using it?...
hi how can i use EVENT_CONNECTING in version 2.0.0 ? i Migrating from 1.0.0 to 2.0.0
**Describe what you would like to know or do** I am working on an IoT project where two devices communicate; a phone and a camera. 1. The camera opens a...
Hello all, I want to use the version 1.0.0. And I also know that there were many changes in version 2.0.1. But I can't see any document version 1.0.0 in...
As I see the thread model is base on EventThread.java, which is included in engine-io.
hi how can i subscribe specific channel ??
When the phone is in standby, the socket io will be disconnected from the service and cannot be reconnected in the background. The service is alive and can access the...
Hi, Getting the following exception after computer returns from sleep mode: `Exception in thread "EventThread" java.util.concurrent.RejectedExecutionException: Task okhttp3.RealCall$AsyncCall@17c8d3 rejected from java.util.concurrent.ThreadPoolExecutor@7822a9d2[Shutting down, pool size = 1, active threads = 1,...
## PROBLEM If you try to build maven with jdk10 the javadoc generation will fail. Issue reported here: https://issues.apache.org/jira/browse/MJAVADOC-517 ## SOLUTION Add commons-lang3 dependency to maven-javadoc-plugin ## TESTING On JDK10...
When I use something like this, everyting is fine: ``` IO.Options options = new IO.Options(); options.forceNew = true; String connectURL = getString(R.string.chat_url); socket = IO.socket(connectURL, options); socket.connect(); ``` But if...