You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Here](https://github.com/TooTallNate/Java-WebSocket/wiki/Drafts) some more details about protocol versions/drafts.
19
-
[PerMessageDeflateExample](https://github.com/TooTallNate/Java-WebSocket/wiki/PerMessageDeflateExample) enable the extension with reference to both a server and client example.
18
+
[Here](https://github.com/TooTallNate/Java-WebSocket/wiki/Drafts) some more details about protocol versions/drafts.
19
+
[PerMessageDeflateExample](https://github.com/TooTallNate/Java-WebSocket/wiki/PerMessageDeflateExample) enable the extension with reference to both a server and client example.
20
20
21
21
22
22
## Getting Started
@@ -76,14 +76,14 @@ Writing your own WebSocket Client
76
76
The `org.java_websocket.client.WebSocketClient` abstract class can connect to
77
77
valid WebSocket servers. The constructor expects a valid `ws://` URI to
78
78
connect to. Important events `onOpen`, `onClose`, `onMessage` and `onError`
79
-
get fired throughout the life of the WebSocketClient, and must be implemented
79
+
get fired throughout the life of the WebSocketClient, and must be implemented
80
80
in **your** subclass.
81
81
82
82
An example for a WebSocketClient can be found in both the [wiki](https://github.com/TooTallNate/Java-WebSocket/wiki#client-example) and the [example](https://github.com/TooTallNate/Java-WebSocket/tree/master/src/main/example) folder.
83
83
84
84
Examples
85
85
-------------------
86
-
86
+
87
87
You can find a lot of examples [here](https://github.com/TooTallNate/Java-WebSocket/tree/master/src/main/example).
0 commit comments