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.
We're using the socket.io-client v1.0.0 in our Android project. Having a connection open we've noticed sometimes when internet connectivity is lost the following error happens: > io.socket.engineio.client.EngineIOException: websocket error io.socket.engineio.client.Transport.onError(Transport.java:63)...
this is my code for socket.io which i use that for web application to reset buffer after connecting to server ``` mySocket.on('connect', function () { mySocket.sendBuffer=[] console.log('Connected!'); }); ``` how...
I have this crash from many users of my app via Fabric: Fatal Exception: java.lang.InternalError: Thread starting during runtime shutdown at java.lang.Thread.nativeCreate(Thread.java) at java.lang.Thread.start(Thread.java:1063) at java.util.concurrent.ThreadPoolExecutor.addWorker(ThreadPoolExecutor.java:921) at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1328) at java.util.concurrent.Executors$DelegatedExecutorService.execute(Executors.java:584)...
Hi, We are using this in production and following crash frequency is very heigh. java.lang.IllegalStateException: at com.google.android.gms.org.conscrypt.OpenSSLContextImpl.engineGetSocketFactory(OpenSSLContextImpl.java:0) at javax.net.ssl.SSLContext.getSocketFactory(SSLContext.java:228) at io.socket.engineio.client.transports.WebSocket.doOpen(WebSocket.java:49) at io.socket.engineio.client.Transport$1.run(Transport.java:82) at io.socket.thread.EventThread.exec(EventThread.java:55) at io.socket.engineio.client.Transport.open(Transport.java:77) at io.socket.engineio.client.Socket$2.run(Socket.java:248) at...
Hi @nkzawa i need your help, this issue is very complex for me. i have a android application (chat application) with socket.io nkazawa, but when the cellphone is connect in...
I have a lot of RejectedExecutionException in Crash Repost in Firebase from users, here are the logs: ``` Exception java.util.concurrent.RejectedExecutionException: Task okhttp3.internal.ws.RealWebSocket$1$2@c80eb66 rejected from java.util.concurrent.ThreadPoolExecutor@1817ea7[Terminated, pool size = 0, active...
In using socket.io-client-java, I ran into an issue with client options - if these need to be changed for an existing connection, the only way to do this is to...
While using the socket.io-client-java package in an Android app running on the emulator, I've encountered an issue with the timeout event. When using timeout values under 10000 ms (higher values...
I'm using socket-io-client-java with an Android app running in the latest version of the Android Studio emulator, and I've been having a problem with timeout. Whenever I set the client's...
Good day. I am trying to implement the Asynchronous Read/Write within the Socket.IO. The idea behind it is the Audio Calling. Let me describe in short what i am trying...