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

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

Introduction

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

Usage

From source file org.springframework.integration.print.outbound.PrintMessageHandler.java

/**
 * Outbound Adapter that supports printing of payloads.
 *
 * @author Gunnar Hillert
 * @since 1.0
 */

From source file org.springframework.integration.aggregator.AbstractCorrelatingMessageHandler.java

/**
 * Abstract Message handler that holds a buffer of correlated messages in a
 * {@link MessageStore}. This class takes care of correlated groups of messages
 * that can be completed in batches. It is useful for custom implementation of MessageHandlers that require correlation
 * and is used as a base class for Aggregator - {@link AggregatingMessageHandler} and
 * Resequencer - {@link ResequencingMessageHandler},

From source file org.springframework.xd.dirt.module.ModuleDeployer.java

/**
 * Listens for deployment request messages and instantiates {@link Module}s accordingly, applying {@link Plugin} logic
 * to them.
 * 
 * @author Mark Fisher
 * @author Gary Russell

From source file org.springframework.integration.redis.outbound.RedisCollectionPopulatingMessageHandler.java

/**
 * Implementation of {@link MessageHandler} which writes Message data into a Redis store
 * identified by a key {@link String}.
 * It supports the collection types identified by {@link CollectionType}.
 *
 * It also supports batch updates and single item entry.

From source file org.springframework.integration.redis.outbound.RedisStoreWritingMessageHandler.java

/**
 * Implementation of {@link MessageHandler} which writes Message data into a Redis store
 * identified by a key {@link String}.
 *
 * It supports the collection types identified by {@link CollectionType}.
 *