private class AbstractMessageBrokerConfiguration.NoOpBrokerMessageHandler extends AbstractBrokerMessageHandler
logger| Constructor and Description |
|---|
NoOpBrokerMessageHandler() |
| Modifier and Type | Method and Description |
|---|---|
void |
handleMessage(Message<?> message)
Handle the given message.
|
protected void |
handleMessageInternal(Message<?> message) |
void |
start()
Start this component.
|
void |
stop()
Stop this component, typically in a synchronous fashion, such that the component is
fully stopped upon return of this method.
|
checkDestinationPrefix, getApplicationEventPublisher, getBrokerChannel, getClientInboundChannel, getClientOutboundChannel, getDestinationPrefixes, getPhase, isAutoStartup, isBrokerAvailable, isRunning, publishBrokerAvailableEvent, publishBrokerUnavailableEvent, setApplicationEventPublisher, setAutoStartup, startInternal, stop, stopInternalpublic void start()
LifecycleShould 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 in interface Lifecyclestart in class AbstractBrokerMessageHandlerSmartLifecycle.isAutoStartup()public void stop()
LifecycleSmartLifecycle
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, only destroy methods will be called.
Should not throw an exception if the component isn't started yet.
In the case of a container, this will propagate the stop signal to all components that apply.
stop in interface Lifecyclestop in class AbstractBrokerMessageHandlerSmartLifecycle.stop(Runnable),
DisposableBean.destroy()public void handleMessage(Message<?> message)
MessageHandlerhandleMessage in interface MessageHandlerhandleMessage in class AbstractBrokerMessageHandlermessage - the message to be handledprotected void handleMessageInternal(Message<?> message)
handleMessageInternal in class AbstractBrokerMessageHandler