Class Reactor2TcpStompClient

    • Constructor Detail

      • Reactor2TcpStompClient

        public Reactor2TcpStompClient()
        Create an instance with host "127.0.0.1" and port 61613.
      • Reactor2TcpStompClient

        public Reactor2TcpStompClient​(String host,
                                      int port)
        Create an instance with the given host and port to connect to
      • Reactor2TcpStompClient

        public Reactor2TcpStompClient​(TcpOperations<byte[]> tcpClient)
        Create an instance with a pre-configured TCP client.
        Parameters:
        tcpClient - the client to use
    • Method Detail

      • start

        public void start()
        Description copied from interface: 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.

        Specified by:
        start in interface Lifecycle
        See Also:
        SmartLifecycle.isAutoStartup()
      • stop

        public void stop()
        Description copied from interface: 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.

        Specified by:
        stop in interface Lifecycle
        See Also:
        SmartLifecycle.stop(Runnable), DisposableBean.destroy()
      • isRunning

        public boolean isRunning()
        Description copied from interface: 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.

        Specified by:
        isRunning in interface Lifecycle
        Returns:
        whether the component is currently running
      • shutdown

        public void shutdown()
        Shut down the client and release resources.