@Deprecated public class SubjectMessageHandler extends org.springframework.integration.handler.AbstractMessageProducingHandler implements org.springframework.context.SmartLifecycle
MessageHandler
by delegating processing to a Observable.
The outputStream of the processor is used to create a message and send it to the output channel. If the
input channel and output channel are connected to the Binder,
then data delivered to the input stream via a call to onNext is invoked on the dispatcher thread of the binder
and sending a message to the output channel will involve IO operations on the binder.
The implementation uses a SerializedSubject. This has the advantage that the state of the Observabale
can be shared across all the incoming dispatcher threads that are invoking onNext. It has the disadvantage
that processing and sending to the output channel will execute serially on one of the dispatcher threads.
The use of this handler makes for a very natural first experience when processing data. For example given
the stream http | rxjava-processor | log where the rxjava-processor does a
buffer(5) and then produces a single value. Sending 10 messages to the http source will
result in 2 messages in the log, no matter how many dispatcher threads are used.
You can modify what thread the outputStream subscriber, which does the send to the output channel,
will use by explicitly calling observeOn before returning the outputStream from your processor.
All error handling is the responsibility of the processor implementation.messagingTemplate| Constructor and Description |
|---|
SubjectMessageHandler(RxJavaProcessor processor)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getPhase()
Deprecated.
|
protected void |
handleMessageInternal(org.springframework.messaging.Message<?> message)
Deprecated.
|
boolean |
isAutoStartup()
Deprecated.
|
boolean |
isRunning()
Deprecated.
|
void |
start()
Deprecated.
|
void |
stop()
Deprecated.
|
void |
stop(Runnable callback)
Deprecated.
|
createOutputMessage, getOutputChannel, isAsync, onInit, produceOutput, resolveErrorChannel, sendErrorMessage, sendOutput, sendOutputs, setAsync, setOutputChannel, setOutputChannelName, setSendTimeout, shouldCopyRequestHeaders, shouldSplitOutputconfigureMetrics, getActiveCount, getActiveCountLong, getComponentType, getDuration, getErrorCount, getErrorCountLong, getHandleCount, getHandleCountLong, getManagedName, getManagedType, getMaxDuration, getMeanDuration, getMinDuration, getOrder, getStandardDeviationDuration, handleMessage, isCountsEnabled, isLoggingEnabled, isStatsEnabled, reset, setCountsEnabled, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, setStatsEnabledafterPropertiesSet, extractTypeIfPossible, getApplicationContext, getApplicationContextId, getBeanFactory, getChannelResolver, getComponentName, getConversionService, getExpression, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toStringpublic SubjectMessageHandler(RxJavaProcessor processor)
public void start()
start in interface org.springframework.context.Lifecyclepublic boolean isRunning()
isRunning in interface org.springframework.context.Lifecyclepublic boolean isAutoStartup()
isAutoStartup in interface org.springframework.context.SmartLifecyclepublic void stop(Runnable callback)
stop in interface org.springframework.context.SmartLifecyclepublic int getPhase()
getPhase in interface org.springframework.context.Phasedprotected void handleMessageInternal(org.springframework.messaging.Message<?> message)
throws Exception
handleMessageInternal in class org.springframework.integration.handler.AbstractMessageHandlerExceptionpublic void stop()
stop in interface org.springframework.context.LifecycleCopyright © 2017 Pivotal Software, Inc.. All rights reserved.