类 ConnectionManagerSupport

    • 字段详细资料

    • 方法详细资料

      • setAutoStartup

        public void setAutoStartup​(boolean autoStartup)
        Set whether to auto-connect to the remote endpoint after this connection manager has been initialized and the Spring context has been refreshed.

        Default is "false".

      • setPhase

        public void setPhase​(int phase)
        Specify the phase in which a connection should be established to the remote endpoint and subsequently closed. The startup order proceeds from lowest to highest, and the shutdown order is the reverse of that. By default this value is Integer.MAX_VALUE meaning that this endpoint connection factory connects as late as possible and is closed as soon as possible.
      • getPhase

        public int getPhase()
        Return the phase in which this endpoint connection factory will be auto-connected and stopped.
        指定者:
        getPhase 在接口中 Phased
      • stop

        public final 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()
      • stop

        public final void stop​(Runnable callback)
        从接口复制的说明: SmartLifecycle
        Indicates that a Lifecycle component must stop if it is currently running.

        The provided callback is used by the LifecycleProcessor to support an ordered, and potentially concurrent, shutdown of all components having a common shutdown order value. The callback must be executed after the SmartLifecycle component does indeed stop.

        The LifecycleProcessor will call only this variant of the stop method; i.e. Lifecycle.stop() will not be called for SmartLifecycle implementations unless explicitly delegated to within the implementation of this method.

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

        public boolean isRunning()
        Return whether this ConnectionManager has been started.
        指定者:
        isRunning 在接口中 Lifecycle
        返回:
        whether the component is currently running