Example usage for io.netty.handler.codec.http.websocketx WebSocketVersion V07

List of usage examples for io.netty.handler.codec.http.websocketx WebSocketVersion V07

Introduction

In this page you can find the example usage for io.netty.handler.codec.http.websocketx WebSocketVersion V07.

Prototype

WebSocketVersion V07

To view the source code for io.netty.handler.codec.http.websocketx WebSocketVersion V07.

Click Source Link

Document

<a href= "http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-07" >draft-ietf-hybi-thewebsocketprotocol- 07</a>

Usage

From source file:io.undertow.websockets.core.protocol.WebSocket07ServerTest.java

License:Open Source License

@Override
protected WebSocketVersion getVersion() {
    return WebSocketVersion.V07;
}

From source file:io.undertow.websockets.jsr.test.JsrWebSocketServer07Test.java

License:Open Source License

protected WebSocketVersion getVersion() {
    return WebSocketVersion.V07;
}