Class WsHttpUpgradeHandler
- java.lang.Object
-
- org.apache.tomcat.websocket.server.WsHttpUpgradeHandler
-
- All Implemented Interfaces:
HttpUpgradeHandler,InternalHttpUpgradeHandler
public class WsHttpUpgradeHandler extends java.lang.Object implements InternalHttpUpgradeHandler
Servlet 3.1 HTTP upgrade handler for WebSocket connections.
-
-
Constructor Summary
Constructors Constructor Description WsHttpUpgradeHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddestroy()This method is called after the upgraded connection has been closed.UpgradeInfogetUpgradeInfo()voidinit(WebConnection connection)This method is called once the request/response pair whereHttpServletRequest.upgrade(Class)is called has completed processing and is the point where control of the connection passes from the container to theHttpUpgradeHandler.voidpause()Pause processing for the connection.voidpreInit(ServerEndpointConfig serverEndpointConfig, WsServerContainer wsc, WsHandshakeRequest handshakeRequest, java.util.List<Extension> negotiatedExtensionsPhase2, java.lang.String subProtocol, Transformation transformation, java.util.Map<java.lang.String,java.lang.String> pathParameters, boolean secure)voidsetSocketWrapper(SocketWrapperBase<?> socketWrapper)Associate with the specified socket.voidsetSslSupport(SSLSupport sslSupport)Associate with the specified SSL support.voidtimeoutAsync(long now)Check for a possible timeout.AbstractEndpoint.Handler.SocketStateupgradeDispatch(SocketEvent status)Process the specified event.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.coyote.http11.upgrade.InternalHttpUpgradeHandler
hasAsyncIO
-
-
-
-
Method Detail
-
setSocketWrapper
public void setSocketWrapper(SocketWrapperBase<?> socketWrapper)
Description copied from interface:InternalHttpUpgradeHandlerAssociate with the specified socket.- Specified by:
setSocketWrapperin interfaceInternalHttpUpgradeHandler- Parameters:
socketWrapper- the socket
-
preInit
public void preInit(ServerEndpointConfig serverEndpointConfig, WsServerContainer wsc, WsHandshakeRequest handshakeRequest, java.util.List<Extension> negotiatedExtensionsPhase2, java.lang.String subProtocol, Transformation transformation, java.util.Map<java.lang.String,java.lang.String> pathParameters, boolean secure)
-
init
public void init(WebConnection connection)
Description copied from interface:jakarta.servlet.http.HttpUpgradeHandlerThis method is called once the request/response pair whereHttpServletRequest.upgrade(Class)is called has completed processing and is the point where control of the connection passes from the container to theHttpUpgradeHandler.- Specified by:
initin interfaceHttpUpgradeHandler- Parameters:
connection- The connection that has been upgraded
-
getUpgradeInfo
public UpgradeInfo getUpgradeInfo()
- Specified by:
getUpgradeInfoin interfaceInternalHttpUpgradeHandler- Returns:
- the associated upgrade information used to collect statistics for the connection
-
upgradeDispatch
public AbstractEndpoint.Handler.SocketState upgradeDispatch(SocketEvent status)
Description copied from interface:InternalHttpUpgradeHandlerProcess the specified event.- Specified by:
upgradeDispatchin interfaceInternalHttpUpgradeHandler- Parameters:
status- the event- Returns:
- the status following the event
-
timeoutAsync
public void timeoutAsync(long now)
Description copied from interface:InternalHttpUpgradeHandlerCheck for a possible timeout.- Specified by:
timeoutAsyncin interfaceInternalHttpUpgradeHandler- Parameters:
now- the time to use for the timeout check
-
pause
public void pause()
Description copied from interface:InternalHttpUpgradeHandlerPause processing for the connection.- Specified by:
pausein interfaceInternalHttpUpgradeHandler
-
destroy
public void destroy()
Description copied from interface:jakarta.servlet.http.HttpUpgradeHandlerThis method is called after the upgraded connection has been closed.- Specified by:
destroyin interfaceHttpUpgradeHandler
-
setSslSupport
public void setSslSupport(SSLSupport sslSupport)
Description copied from interface:InternalHttpUpgradeHandlerAssociate with the specified SSL support.- Specified by:
setSslSupportin interfaceInternalHttpUpgradeHandler- Parameters:
sslSupport- the SSL support
-
-