AndroidAsync
AndroidAsync copied to clipboard
Asynchronous socket, http(s) (client+server) and websocket library for android. Based on nio, not threads.
On my tests with play services conscrypt, doing SSLContext.getInstance("TLSv1.3"); is required to use TLSv1.3, but a quick search in this repository only shows SSLContext.getInstance("TLS"). Also, is HTTP/2 supported?
Is this project using continuous integration services (e.g., Travis-CI or Jenkings)? Or has it used at any point of its lifetime?
I'm using this websocket server library to connect to an iOS device (via SocketRocket client) on a LAN. On android 4.x I am getting long delays occasionally as if the...
I created a web socket server with this library in my project, and this lib is pretty good. But why not provides a method which we can get the socket...
`W/System.err: java.lang.NumberFormatException: For input string: "0,"message"" W/System.err: at java.lang.Integer.parseInt(Integer.java:615) W/System.err: at java.lang.Integer.parseInt(Integer.java:650) W/System.err: at com.koushikdutta.async.http.socketio.SocketIOConnection$2.transform(SocketIOConnection.java:119) W/System.err: at com.koushikdutta.async.http.socketio.SocketIOConnection$2.transform(SocketIOConnection.java:113) W/System.err: at com.koushikdutta.async.future.TransformFuture.onCompleted(TransformFuture.java:14) W/System.err: at com.koushikdutta.async.future.SimpleFuture.handleCallbackUnlocked(SimpleFuture.java:107) W/System.err: at com.koushikdutta.async.future.SimpleFuture.setComplete(SimpleFuture.java:141) W/System.err: at com.koushikdutta.async.future.SimpleFuture.setComplete(SimpleFuture.java:128)...
now , i need to import this lib into my project,and modify the AsyncNetworkSocket.class like this `@Override public String charset() { return "utf-8"; }` but i do not want to,it...