Class AbstractMqttMessageHandler
java.lang.Object
org.springframework.integration.context.IntegrationObjectSupport
org.springframework.integration.handler.MessageHandlerSupport
org.springframework.integration.handler.AbstractMessageHandler
org.springframework.integration.mqtt.outbound.AbstractMqttMessageHandler
- All Implemented Interfaces:
org.reactivestreams.Subscriber<Message<?>>
,Aware
,BeanFactoryAware
,BeanNameAware
,DisposableBean
,InitializingBean
,ApplicationContextAware
,Lifecycle
,Ordered
,ExpressionCapable
,Orderable
,IntegrationPattern
,NamedComponent
,IntegrationManagement
,ManageableLifecycle
,TrackableComponent
,MessageHandler
,reactor.core.CoreSubscriber<Message<?>>
- Direct Known Subclasses:
MqttPahoMessageHandler
public abstract class AbstractMqttMessageHandler extends AbstractMessageHandler implements ManageableLifecycle
Abstract class for MQTT outbound channel adapters.
- Since:
- 4.0
- Author:
- Gary Russell, Artem Bilan
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.springframework.integration.support.management.IntegrationManagement
IntegrationManagement.ManagementOverrides
-
Field Summary
Fields inherited from class org.springframework.integration.context.IntegrationObjectSupport
EXPRESSION_PARSER, logger
Fields inherited from interface org.springframework.integration.support.management.IntegrationManagement
METER_PREFIX, RECEIVE_COUNTER_NAME, SEND_TIMER_NAME
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Constructor Summary
Constructors Constructor Description AbstractMqttMessageHandler(String url, String clientId)
-
Method Summary
Modifier and Type Method Description protected abstract void
doStart()
protected abstract void
doStop()
String
getClientId()
int
getClientInstance()
Incremented each time the client is connected.String
getComponentType()
Subclasses may implement this method to provide component type information.protected MessageConverter
getConverter()
protected String
getUrl()
protected void
handleMessageInternal(Message<?> message)
protected void
incrementClientInstance()
boolean
isRunning()
protected void
onInit()
Subclasses may implement this for initialization logic.protected abstract void
publish(String topic, Object mqttMessage, Message<?> message)
void
setConverter(MessageConverter converter)
Set the message converter to use; if this is provided, the adapter qos and retained settings are ignored.void
setDefaultQos(int defaultQos)
Set the qos for messages if theqosExpression
evaluates to null.void
setDefaultRetained(boolean defaultRetained)
Set the retained boolean for messages if theretainedExpression
evaluates to null.void
setDefaultTopic(String defaultTopic)
Set the topic to which the message will be published if thetopicExpression
evaluates to `null`.void
setQosExpression(Expression qosExpression)
Set the qos expression; default "headers['mqtt_qos']".void
setQosExpressionString(String qosExpression)
Set the qos expression; default "headers['mqtt_qos']".void
setRetainedExpression(Expression retainedExpression)
Set the retained expression; default "headers['mqtt_retained']".void
setRetainedExpressionString(String retainedExpression)
Set the retained expression; default "headers['mqtt_retained']".void
setTopicExpression(Expression topicExpression)
Set the topic expression; default "headers['mqtt_topic']".void
setTopicExpressionString(String topicExpression)
Set the topic expression; default "headers['mqtt_topic']".void
start()
void
stop()
Methods inherited from class org.springframework.integration.handler.AbstractMessageHandler
handleMessage, onComplete, onError, onNext, onSubscribe
Methods inherited from class org.springframework.integration.handler.MessageHandlerSupport
buildSendTimer, destroy, getIntegrationPatternType, getManagedName, getManagedType, getMetricsCaptor, getOrder, getOverrides, isLoggingEnabled, registerMetricsCaptor, sendTimer, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, shouldTrack
Methods inherited from class org.springframework.integration.context.IntegrationObjectSupport
afterPropertiesSet, extractTypeIfPossible, generateId, getApplicationContext, getApplicationContextId, getBeanDescription, getBeanFactory, getBeanName, getChannelResolver, getComponentName, getConversionService, getExpression, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, isInitialized, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.springframework.integration.support.management.IntegrationManagement
getThisAs
Methods inherited from interface org.springframework.integration.support.context.NamedComponent
getBeanName, getComponentName
-
Constructor Details
-
Method Details
-
setDefaultTopic
Set the topic to which the message will be published if thetopicExpression
evaluates to `null`.- Parameters:
defaultTopic
- the default topic.
-
setTopicExpression
Set the topic expression; default "headers['mqtt_topic']".- Parameters:
topicExpression
- the expression.- Since:
- 5.0
-
setTopicExpressionString
Set the topic expression; default "headers['mqtt_topic']".- Parameters:
topicExpression
- the expression.- Since:
- 5.0
-
setDefaultQos
public void setDefaultQos(int defaultQos)Set the qos for messages if theqosExpression
evaluates to null. Only applies if a message converter is not provided.- Parameters:
defaultQos
- the default qos.- See Also:
setConverter(MessageConverter)
-
setQosExpression
Set the qos expression; default "headers['mqtt_qos']". Only applies if a message converter is not provided.- Parameters:
qosExpression
- the expression.- Since:
- 5.0
- See Also:
setConverter(MessageConverter)
-
setQosExpressionString
Set the qos expression; default "headers['mqtt_qos']". Only applies if a message converter is not provided.- Parameters:
qosExpression
- the expression.- Since:
- 5.0
- See Also:
setConverter(MessageConverter)
-
setDefaultRetained
public void setDefaultRetained(boolean defaultRetained)Set the retained boolean for messages if theretainedExpression
evaluates to null. Only applies if a message converter is not provided.- Parameters:
defaultRetained
- the default defaultRetained.- See Also:
setConverter(MessageConverter)
-
setRetainedExpression
Set the retained expression; default "headers['mqtt_retained']". Only applies if a message converter is not provided.- Parameters:
retainedExpression
- the expression.- Since:
- 5.0
- See Also:
setConverter(MessageConverter)
-
setRetainedExpressionString
Set the retained expression; default "headers['mqtt_retained']". Only applies if a message converter is not provided.- Parameters:
retainedExpression
- the expression.- Since:
- 5.0
- See Also:
setConverter(MessageConverter)
-
setConverter
Set the message converter to use; if this is provided, the adapter qos and retained settings are ignored.- Parameters:
converter
- the converter.
-
getConverter
-
getUrl
-
getClientId
-
getClientInstance
public int getClientInstance()Incremented each time the client is connected.- Returns:
- The instance;
- Since:
- 4.1
-
getComponentType
Description copied from class:IntegrationObjectSupport
Subclasses may implement this method to provide component type information.- Specified by:
getComponentType
in interfaceNamedComponent
- Overrides:
getComponentType
in classMessageHandlerSupport
-
incrementClientInstance
protected void incrementClientInstance() -
onInit
protected void onInit()Description copied from class:IntegrationObjectSupport
Subclasses may implement this for initialization logic.- Overrides:
onInit
in classIntegrationObjectSupport
-
start
public final void start()- Specified by:
start
in interfaceLifecycle
- Specified by:
start
in interfaceManageableLifecycle
-
doStart
protected abstract void doStart() -
stop
public final void stop()- Specified by:
stop
in interfaceLifecycle
- Specified by:
stop
in interfaceManageableLifecycle
-
doStop
protected abstract void doStop() -
isRunning
public boolean isRunning()- Specified by:
isRunning
in interfaceLifecycle
- Specified by:
isRunning
in interfaceManageableLifecycle
-
handleMessageInternal
- Specified by:
handleMessageInternal
in classAbstractMessageHandler
-
publish
-