Example usage for org.springframework.integration.core MessageProducer interface-usage

List of usage examples for org.springframework.integration.core MessageProducer interface-usage

Introduction

In this page you can find the example usage for org.springframework.integration.core MessageProducer interface-usage.

Usage

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

/**
 * 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 aggregating, resequencing,
 * or custom implementations requiring correlation.
 * <p/>

From source file org.springframework.integration.handler.DelayHandler.java

/**
 * A {@link MessageHandler} that is capable of delaying the continuation of a
 * Message flow based on the presence of a delay header on an inbound Message
 * or a default delay value configured on this handler. Note that the
 * continuation of the flow is delegated to a {@link TaskScheduler}, and
 * therefore, the calling thread does not block. The advantage of this approach

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},