类 JettyRequestUpgradeStrategy

    • 方法详细资料

      • setWebSocketPolicy

        public void setWebSocketPolicy​(org.eclipse.jetty.websocket.api.WebSocketPolicy webSocketPolicy)
        Configure a WebSocketPolicy to use to initialize WebSocketServerFactory.
        参数:
        webSocketPolicy - the WebSocket settings
      • getWebSocketPolicy

        @Nullable
        public org.eclipse.jetty.websocket.api.WebSocketPolicy getWebSocketPolicy()
        Return the configured WebSocketPolicy, if any.
      • start

        public void start()
        从接口复制的说明: Lifecycle
        Start this component.

        Should not throw an exception if the component is already running.

        In the case of a container, this will propagate the start signal to all components that apply.

        指定者:
        start 在接口中 Lifecycle
        另请参阅:
        SmartLifecycle.isAutoStartup()
      • stop

        public void stop()
        从接口复制的说明: Lifecycle
        Stop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method. Consider implementing SmartLifecycle and its stop(Runnable) variant when asynchronous stop behavior is necessary.

        Note that this stop notification is not guaranteed to come before destruction: On regular shutdown, Lifecycle beans will first receive a stop notification before the general destruction callbacks are being propagated; however, on hot refresh during a context's lifetime or on aborted refresh attempts, a given bean's destroy method will be called without any consideration of stop signals upfront.

        Should not throw an exception if the component is not running (not started yet).

        In the case of a container, this will propagate the stop signal to all components that apply.

        指定者:
        stop 在接口中 Lifecycle
        另请参阅:
        SmartLifecycle.stop(Runnable), DisposableBean.destroy()
      • isRunning

        public boolean isRunning()
        从接口复制的说明: Lifecycle
        Check whether this component is currently running.

        In the case of a container, this will return true only if all components that apply are currently running.

        指定者:
        isRunning 在接口中 Lifecycle
        返回:
        whether the component is currently running
      • upgrade

        public reactor.core.publisher.Mono<Voidupgrade​(ServerWebExchange exchange,
                                                         WebSocketHandler handler,
                                                         @Nullable
                                                         String subProtocol,
                                                         Supplier<HandshakeInfo> handshakeInfoFactory)
        从接口复制的说明: RequestUpgradeStrategy
        Upgrade to a WebSocket session and handle it with the given handler.
        指定者:
        upgrade 在接口中 RequestUpgradeStrategy
        参数:
        exchange - the current exchange
        handler - handler for the WebSocket session
        subProtocol - the selected sub-protocol got the handler
        handshakeInfoFactory - factory to create HandshakeInfo for the WebSocket session
        返回:
        completion Mono<Void> to indicate the outcome of the WebSocket session handling.