Class WebSocketClientHandshaker
java.lang.Object
io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker
- Direct Known Subclasses:
WebSocketClientHandshaker00,WebSocketClientHandshaker07,WebSocketClientHandshaker08,WebSocketClientHandshaker13
Base class for web socket client handshake implementations
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final HttpHeadersprotected static final intprotected final boolean -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedWebSocketClientHandshaker(URI uri, WebSocketVersion version, String subprotocol, HttpHeaders customHeaders, int maxFramePayloadLength) Base constructorprotectedWebSocketClientHandshaker(URI uri, WebSocketVersion version, String subprotocol, HttpHeaders customHeaders, int maxFramePayloadLength, long forceCloseTimeoutMillis) Base constructorprotectedWebSocketClientHandshaker(URI uri, WebSocketVersion version, String subprotocol, HttpHeaders customHeaders, int maxFramePayloadLength, long forceCloseTimeoutMillis, boolean absoluteUpgradeUrl) Base constructorprotectedWebSocketClientHandshaker(URI uri, WebSocketVersion version, String subprotocol, HttpHeaders customHeaders, int maxFramePayloadLength, long forceCloseTimeoutMillis, boolean absoluteUpgradeUrl, boolean generateOriginHeader) Base constructor -
Method Summary
Modifier and TypeMethodDescriptionReturns the subprotocol response sent by the server.io.netty.channel.ChannelFutureclose(io.netty.channel.ChannelHandlerContext ctx, CloseWebSocketFrame frame) Performs the closing handshakeio.netty.channel.ChannelFutureclose(io.netty.channel.ChannelHandlerContext ctx, CloseWebSocketFrame frame, io.netty.channel.ChannelPromise promise) Performs the closing handshakeio.netty.channel.ChannelFutureclose(io.netty.channel.Channel channel, CloseWebSocketFrame frame) Performs the closing handshake.io.netty.channel.ChannelFutureclose(io.netty.channel.Channel channel, CloseWebSocketFrame frame, io.netty.channel.ChannelPromise promise) Performs the closing handshake When called from within aChannelHandleryou most likely want to useclose(ChannelHandlerContext, CloseWebSocketFrame, ChannelPromise).Returns the CSV of requested subprotocol(s) sent to the server as specified in the constructorfinal voidfinishHandshake(io.netty.channel.Channel channel, FullHttpResponse response) Validates and finishes the opening handshake initiated byhandshake(io.netty.channel.Channel)}.longio.netty.channel.ChannelFuturehandshake(io.netty.channel.Channel channel) Begins the opening handshakefinal io.netty.channel.ChannelFuturehandshake(io.netty.channel.Channel channel, io.netty.channel.ChannelPromise promise) Begins the opening handshakeprotected booleanFlag to indicate if the closing handshake was initiated because of timeout.booleanFlag to indicate if the opening handshake is completeintReturns the max length for any frame's payloadprotected abstract FullHttpRequestReturns a newinvalid @link
{@link FullHttpRequest) which will be used for the handshake.protected abstract WebSocketFrameDecoderReturns the decoder to use after handshake is complete.protected abstract WebSocketFrameEncoderReturns the encoder to use after the handshake is complete.final io.netty.channel.ChannelFutureprocessHandshake(io.netty.channel.Channel channel, HttpResponse response) Process the opening handshake initiated byhandshake(io.netty.channel.Channel)}.final io.netty.channel.ChannelFutureprocessHandshake(io.netty.channel.Channel channel, HttpResponse response, io.netty.channel.ChannelPromise promise) Process the opening handshake initiated byhandshake(io.netty.channel.Channel)}.setForceCloseTimeoutMillis(long forceCloseTimeoutMillis) Sets timeout to close the connection if it was not closed by the server.protected StringupgradeUrl(URI wsURL) Return the constructed raw path for the giveURI.uri()Returns the URI to the web socket. e.g.protected abstract voidverify(FullHttpResponse response) Verify theFullHttpResponseand throws aWebSocketHandshakeExceptionif something is wrong.version()Version of the web socket specification that is being used
-
Field Details
-
DEFAULT_FORCE_CLOSE_TIMEOUT_MILLIS
protected static final int DEFAULT_FORCE_CLOSE_TIMEOUT_MILLIS- See Also:
-
customHeaders
-
generateOriginHeader
protected final boolean generateOriginHeader
-
-
Constructor Details
-
WebSocketClientHandshaker
protected WebSocketClientHandshaker(URI uri, WebSocketVersion version, String subprotocol, HttpHeaders customHeaders, int maxFramePayloadLength) Base constructor- Parameters:
uri- URL for web socket communications. e.g "ws://myhost.com/mypath". Subsequent web socket frames will be sent to this URL.version- Version of web socket specification to use to connect to the serversubprotocol- Sub protocol request sent to the server.customHeaders- Map of custom headers to add to the client requestmaxFramePayloadLength- Maximum length of a frame's payload
-
WebSocketClientHandshaker
protected WebSocketClientHandshaker(URI uri, WebSocketVersion version, String subprotocol, HttpHeaders customHeaders, int maxFramePayloadLength, long forceCloseTimeoutMillis) Base constructor- Parameters:
uri- URL for web socket communications. e.g "ws://myhost.com/mypath". Subsequent web socket frames will be sent to this URL.version- Version of web socket specification to use to connect to the serversubprotocol- Sub protocol request sent to the server.customHeaders- Map of custom headers to add to the client requestmaxFramePayloadLength- Maximum length of a frame's payloadforceCloseTimeoutMillis- Close the connection if it was not closed by the server after timeout specified
-
WebSocketClientHandshaker
protected WebSocketClientHandshaker(URI uri, WebSocketVersion version, String subprotocol, HttpHeaders customHeaders, int maxFramePayloadLength, long forceCloseTimeoutMillis, boolean absoluteUpgradeUrl) Base constructor- Parameters:
uri- URL for web socket communications. e.g "ws://myhost.com/mypath". Subsequent web socket frames will be sent to this URL.version- Version of web socket specification to use to connect to the serversubprotocol- Sub protocol request sent to the server.customHeaders- Map of custom headers to add to the client requestmaxFramePayloadLength- Maximum length of a frame's payloadforceCloseTimeoutMillis- Close the connection if it was not closed by the server after timeout specifiedabsoluteUpgradeUrl- Use an absolute url for the Upgrade request, typically when connecting through an HTTP proxy over clear HTTP
-
WebSocketClientHandshaker
protected WebSocketClientHandshaker(URI uri, WebSocketVersion version, String subprotocol, HttpHeaders customHeaders, int maxFramePayloadLength, long forceCloseTimeoutMillis, boolean absoluteUpgradeUrl, boolean generateOriginHeader) Base constructor- Parameters:
uri- URL for web socket communications. e.g "ws://myhost.com/mypath". Subsequent web socket frames will be sent to this URL.version- Version of web socket specification to use to connect to the serversubprotocol- Sub protocol request sent to the server.customHeaders- Map of custom headers to add to the client requestmaxFramePayloadLength- Maximum length of a frame's payloadforceCloseTimeoutMillis- Close the connection if it was not closed by the server after timeout specifiedabsoluteUpgradeUrl- Use an absolute url for the Upgrade request, typically when connecting through an HTTP proxy over clear HTTPgenerateOriginHeader- Allows to generate the `Origin`|`Sec-WebSocket-Origin` header value for handshake request according to the given webSocketURL
-
-
Method Details
-
uri
Returns the URI to the web socket. e.g. "ws://myhost.com/path" -
version
Version of the web socket specification that is being used -
maxFramePayloadLength
public int maxFramePayloadLength()Returns the max length for any frame's payload -
isHandshakeComplete
public boolean isHandshakeComplete()Flag to indicate if the opening handshake is complete -
expectedSubprotocol
Returns the CSV of requested subprotocol(s) sent to the server as specified in the constructor -
actualSubprotocol
Returns the subprotocol response sent by the server. Only available after end of handshake. Null if no subprotocol was requested or confirmed by the server. -
forceCloseTimeoutMillis
public long forceCloseTimeoutMillis() -
isForceCloseComplete
protected boolean isForceCloseComplete()Flag to indicate if the closing handshake was initiated because of timeout. For testing only. -
setForceCloseTimeoutMillis
Sets timeout to close the connection if it was not closed by the server.- Parameters:
forceCloseTimeoutMillis- Close the connection if it was not closed by the server after timeout specified
-
handshake
public io.netty.channel.ChannelFuture handshake(io.netty.channel.Channel channel) Begins the opening handshake- Parameters:
channel- Channel
-
handshake
public final io.netty.channel.ChannelFuture handshake(io.netty.channel.Channel channel, io.netty.channel.ChannelPromise promise) Begins the opening handshake- Parameters:
channel- Channelpromise- theChannelPromiseto be notified when the opening handshake is sent
-
newHandshakeRequest
Returns a newinvalid @link
{@link FullHttpRequest) which will be used for the handshake. -
finishHandshake
Validates and finishes the opening handshake initiated byhandshake(io.netty.channel.Channel)}.- Parameters:
channel- Channelresponse- HTTP response containing the closing handshake details
-
processHandshake
public final io.netty.channel.ChannelFuture processHandshake(io.netty.channel.Channel channel, HttpResponse response) Process the opening handshake initiated byhandshake(io.netty.channel.Channel)}.- Parameters:
channel- Channelresponse- HTTP response containing the closing handshake details- Returns:
- future
the
ChannelFuturewhich is notified once the handshake completes.
-
processHandshake
public final io.netty.channel.ChannelFuture processHandshake(io.netty.channel.Channel channel, HttpResponse response, io.netty.channel.ChannelPromise promise) Process the opening handshake initiated byhandshake(io.netty.channel.Channel)}.- Parameters:
channel- Channelresponse- HTTP response containing the closing handshake detailspromise- theChannelPromiseto notify once the handshake completes.- Returns:
- future
the
ChannelFuturewhich is notified once the handshake completes.
-
verify
Verify theFullHttpResponseand throws aWebSocketHandshakeExceptionif something is wrong. -
newWebsocketDecoder
Returns the decoder to use after handshake is complete. -
newWebSocketEncoder
Returns the encoder to use after the handshake is complete. -
close
public io.netty.channel.ChannelFuture close(io.netty.channel.Channel channel, CloseWebSocketFrame frame) Performs the closing handshake. When called from within aChannelHandleryou most likely want to useclose(ChannelHandlerContext, CloseWebSocketFrame).- Parameters:
channel- Channelframe- Closing Frame that was received
-
close
public io.netty.channel.ChannelFuture close(io.netty.channel.Channel channel, CloseWebSocketFrame frame, io.netty.channel.ChannelPromise promise) Performs the closing handshake When called from within aChannelHandleryou most likely want to useclose(ChannelHandlerContext, CloseWebSocketFrame, ChannelPromise).- Parameters:
channel- Channelframe- Closing Frame that was receivedpromise- theChannelPromiseto be notified when the closing handshake is done
-
close
public io.netty.channel.ChannelFuture close(io.netty.channel.ChannelHandlerContext ctx, CloseWebSocketFrame frame) Performs the closing handshake- Parameters:
ctx- theChannelHandlerContextto use.frame- Closing Frame that was received
-
close
public io.netty.channel.ChannelFuture close(io.netty.channel.ChannelHandlerContext ctx, CloseWebSocketFrame frame, io.netty.channel.ChannelPromise promise) Performs the closing handshake- Parameters:
ctx- theChannelHandlerContextto use.frame- Closing Frame that was receivedpromise- theChannelPromiseto be notified when the closing handshake is done
-
upgradeUrl
Return the constructed raw path for the giveURI.
-