Example usage for org.springframework.integration.endpoint ExpressionMessageProducerSupport subclass-usage

List of usage examples for org.springframework.integration.endpoint ExpressionMessageProducerSupport subclass-usage

Introduction

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

Usage

From source file org.springframework.integration.gemfire.inbound.CacheListeningMessageProducer.java

/**
 * An inbound endpoint that listens to a GemFire region for events and then publishes Messages to
 * a channel. The default supported event types are CREATED and UPDATED. See the {@link EventType}
 * enum for all options. A SpEL expression may be provided to generate a Message payload by
 * evaluating that expression against the {@link EntryEvent} instance as the root object. If no
 * payloadExpression is provided, the {@link EntryEvent} itself will be the payload.

From source file org.springframework.integration.gemfire.inbound.ContinuousQueryMessageProducer.java

/**
 * Responds to a Gemfire continuous query (set using the #query field) that is
 * constantly evaluated against a cache
 * {@link com.gemstone.gemfire.cache.Region}. This is much faster than
 * re-querying the cache manually.
 *