Example usage for org.springframework.integration.handler AbstractMessageProducingHandler subclass-usage

List of usage examples for org.springframework.integration.handler AbstractMessageProducingHandler subclass-usage

Introduction

In this page you can find the example usage for org.springframework.integration.handler AbstractMessageProducingHandler subclass-usage.

Usage

From source file org.springframework.xd.reactor.SynchronousDispatcherMessageHandler.java

/**
 * A handler that adapts item at a time delivery in a
 * {@link org.springframework.messaging.MessageHandler}
 * and delegates processing to a Reactor Stream with synchronous dispatch  so that processing
 * occurs on the same thread that invokes the handler.
 * <p/>

From source file org.springframework.cloud.stream.annotation.rxjava.SubjectMessageHandler.java

/**
 * Adapts the item at a time delivery of a {@link org.springframework.messaging.MessageHandler}
 * by delegating processing to a {@link Observable}.
 * <p/>
 * 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 {@link org.springframework.cloud.stream.binder.Binder},

From source file org.springframework.xd.reactor.BroadcasterMessageHandler.java

/**
 * Adapts the item at a time delivery of a {@link org.springframework.messaging.MessageHandler}
 * by delegating processing to a {@link Stream}
 * <p/>
 * 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 MessageBus, then data delivered to the input stream via

From source file org.springframework.xd.rxjava.SubjectMessageHandler.java

/**
 * Adapts the item at a time delivery of a {@link org.springframework.messaging.MessageHandler}
 * by delegating processing to a {@link Observable}.
 * <p/>
 * 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 MessageBus, then data delivered to the input stream via

From source file org.springframework.xd.rxjava.MultipleSubjectMessageHandler.java

/**
 * Adapts the item at a time delivery of a {@link org.springframework.messaging.MessageHandler}
 * by delegating processing to an Observable based on a partitionExpression.
 * <p/>
 * The specific Observable that the message is delegated is determined by the partitionExpression value.
 * Unless you change the scheduling of the inputStream in your processor, you should ensure that the

From source file org.springframework.xd.reactor.MultipleBroadcasterMessageHandler.java

/**
 * Adapts the item at a time delivery of a {@link org.springframework.messaging.MessageHandler}
 * by delegating processing to a Stream based on a partitionExpression.
 * <p/>
 * The specific Stream that the message is delegated to is determined by the partitionExpression value.
 * Unless you change the scheduling of the inputStream in your processor, you should ensure that the