allwinner_a64/android/external/okhttp/okhttp-ws
2018-08-08 16:14:42 +08:00
..
src/main/java/com/squareup/okhttp upload android base code part2 2018-08-08 16:14:42 +08:00
pom.xml upload android base code part2 2018-08-08 16:14:42 +08:00
README.md upload android base code part2 2018-08-08 16:14:42 +08:00

OkHttp Web Sockets

RFC6455-compliant web socket implementation.

Create a WebSocketCall with a Request and an OkHttpClient instance.

WebSocketCall call = WebSocketCall.create(client, request);

A WebSocketListener will notify of the initial connection, server-sent messages, and any failures on the connection.

Start the web socket by calling enqueue on WebSocketCall with the WebSocketListener.

call.enqueue(new WebSocketListener() {
  // ...
});

Note: This module's API should be considered experimental and may be subject to breaking changes in future releases.