Uses of Class
org.jboss.netty.handler.codec.http.websocketx.WebSocketVersion
-
Packages that use WebSocketVersion Package Description org.jboss.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames. -
-
Uses of WebSocketVersion in org.jboss.netty.handler.codec.http.websocketx
Methods in org.jboss.netty.handler.codec.http.websocketx that return WebSocketVersion Modifier and Type Method Description WebSocketVersion
WebSocketClientHandshaker. getVersion()
Version of the web socket specification that is being usedWebSocketVersion
WebSocketServerHandshaker. getVersion()
Returns the version of the specification being supportedstatic WebSocketVersion
WebSocketVersion. valueOf(String name)
Returns the enum constant of this type with the specified name.static WebSocketVersion[]
WebSocketVersion. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.netty.handler.codec.http.websocketx with parameters of type WebSocketVersion Modifier and Type Method Description WebSocketClientHandshaker
WebSocketClientHandshakerFactory. newHandshaker(URI webSocketURL, WebSocketVersion version, String subprotocol, boolean allowExtensions, Map<String,String> customHeaders)
Instances a new handshakerWebSocketClientHandshaker
WebSocketClientHandshakerFactory. newHandshaker(URI webSocketURL, WebSocketVersion version, String subprotocol, boolean allowExtensions, Map<String,String> customHeaders, long maxFramePayloadLength)
Instances a new handshakerConstructors in org.jboss.netty.handler.codec.http.websocketx with parameters of type WebSocketVersion Constructor Description WebSocketClientHandshaker(URI webSocketUrl, WebSocketVersion version, String subprotocol, Map<String,String> customHeaders)
Base constructor with default valuesWebSocketClientHandshaker(URI webSocketUrl, WebSocketVersion version, String subprotocol, Map<String,String> customHeaders, long maxFramePayloadLength)
Base constructorWebSocketClientHandshaker00(URI webSocketURL, WebSocketVersion version, String subprotocol, Map<String,String> customHeaders)
Constructor with default valuesWebSocketClientHandshaker00(URI webSocketURL, WebSocketVersion version, String subprotocol, Map<String,String> customHeaders, long maxFramePayloadLength)
ConstructorWebSocketClientHandshaker07(URI webSocketURL, WebSocketVersion version, String subprotocol, boolean allowExtensions, Map<String,String> customHeaders, long maxFramePayloadLength)
Creates a new instance.WebSocketClientHandshaker08(URI webSocketURL, WebSocketVersion version, String subprotocol, boolean allowExtensions, Map<String,String> customHeaders)
Constructor with default valuesWebSocketClientHandshaker08(URI webSocketURL, WebSocketVersion version, String subprotocol, boolean allowExtensions, Map<String,String> customHeaders, long maxFramePayloadLength)
ConstructorWebSocketClientHandshaker13(URI webSocketURL, WebSocketVersion version, String subprotocol, boolean allowExtensions, Map<String,String> customHeaders)
Constructor with default valuesWebSocketClientHandshaker13(URI webSocketURL, WebSocketVersion version, String subprotocol, boolean allowExtensions, Map<String,String> customHeaders, long maxFramePayloadLength)
ConstructorWebSocketServerHandshaker(WebSocketVersion version, String webSocketUrl, String subprotocols)
Constructor using default valuesWebSocketServerHandshaker(WebSocketVersion version, String webSocketUrl, String subprotocols, long maxFramePayloadLength)
Constructor specifying the destination web socket location
-