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

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

Introduction

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

Usage

From source file org.acme.echo.module.ModuleGatewayMessageHandler.java

/**
 * @author Oleg Zhurakousky
 *
 */
public class ModuleGatewayMessageHandler extends AbstractReplyProducingMessageHandler {

From source file sipackage.outbound.SIAdapterUpperPrefixOutboundGateway.java

/**
 *
 * @author SI-TEMPLATE-AUTHOR
 * @since SI-TEMPLATE-VERSION
 *
 */

From source file org.springframework.integration.flow.handler.FlowMessageHandler.java

/**
 * A MessageHandler for Handling Flow input and output. Sends messages on its
 * input channel to the flow input channel and replies with the flow output (if
 * there is one) to its output channel.
 * 
 * Internally creates a subscriber to a PublishSubscribeChannel automatically

From source file org.synyx.hera.si.PluginRegistryAwareMessageHandler.java

/**
 * Dynamic service activator that uses a {@link PluginRegistry} to delegate execution to one or more plugins matching a
 * delimiter.
 * 
 * @author Oliver Gierke
 */

From source file org.springframework.integration.file.FileWritingMessageHandler.java

/**
 * A {@link MessageHandler} implementation that writes the Message payload to a
 * file. If the payload is a File object, it will copy the File to the specified
 * destination directory. If the payload is a byte array or String, it will write
 * it directly. Otherwise, the payload type is unsupported, and an Exception
 * will be thrown.

From source file org.springframework.integration.jms.JmsOutboundGateway.java

/**
 * An outbound Messaging Gateway for request/reply JMS.
 *
 * @author Mark Fisher
 * @author Arjen Poutsma
 * @author Juergen Hoeller