Example usage for org.springframework.integration.context IntegrationObjectSupport subclass-usage

List of usage examples for org.springframework.integration.context IntegrationObjectSupport subclass-usage

Introduction

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

Usage

From source file sipackage.inbound.SIAdapterUpperPrefixPollingChannelAdapter.java

/**
 * @author SI-TEMPLATE-AUTHOR
 * @since SI-TEMPLATE-VERSION
 *
 */
public class SIAdapterUpperPrefixPollingChannelAdapter extends IntegrationObjectSupport

From source file com.bdx.rainbow.kafka.consumer.BdxKafkaHighLevelConsumerMessageSource.java

/**
 * @author Soby Chacko
 * @since 0.5
 *
 */
public class BdxKafkaHighLevelConsumerMessageSource<K, V> extends IntegrationObjectSupport

From source file org.opencredo.couchdb.inbound.CouchDbChangesPollingMessageSource.java

/**
 * A MessageSource that receives messages by polling a CouchDB database. The polling is performed through
 * a CouchDbChangesOperations, typically using the changes API.
 * </p>
 * Each poll returns and stores internally the list of changed documents since the last poll, which means that instances
 * of this class are stateful.

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

/**
 * Base class for MessageHandler implementations that provides basic validation
 * and error handling capabilities. Asserts that the incoming Message is not
 * null and that it does not contain a null payload. Converts checked exceptions
 * into runtime {@link MessagingException}s.
 * 

From source file org.springframework.integration.handler.advice.AbstractRequestHandlerAdvice.java

/**
 * Base class for {@link MessageHandler} advice classes. Subclasses should provide
 * an implementation for {@link #doInvoke(ExecutionCallback, Object, Message)}.
 * Used to advise the handleRequestMessage method for {@link AbstractReplyProducingMessageHandler} or
 * {@link MessageHandler#handleMessage(Message)} for other message handlers.
 *

From source file org.opencredo.couchdb.inbound.CouchDbAllDocumentsMessageSource.java

/**
 * A MessageSource that takes the URI of a CouchDB view or database and receives all messages sequentially by using the skip and limit parameters
 * which are supported by CouchDB. The retrieval of the documents is performed through an instance of CouchDbDocumentOperations.
 * <p/>
 * Each request returns and stores internally a number of {@link JsonNode}s equal to the queue capacity; when the queue becomes empty, a new request
 * is made with limit and skip adjusted accordingly.

From source file org.springframework.integration.channel.AbstractMessageChannel.java

/**
 * Base class for {@link MessageChannel} implementations providing common
 * properties such as the channel name. Also provides the common functionality
 * for sending and receiving {@link Message Messages} including the invocation
 * of any {@link ChannelInterceptor ChannelInterceptors}.
 *

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

/**
 * {@link MessageSource} that creates messages from a file system directory. To
 * prevent messages for certain files, you may supply a
 * {@link FileListFilter}. By
 * default, an
 * {@link AcceptOnceFileListFilter}

From source file org.springframework.integration.mail.AbstractMailReceiver.java

/**
 * Base class for {@link MailReceiver} implementations.
 *
 * @author Arjen Poutsma
 * @author Jonas Partner
 * @author Mark Fisher

From source file uk.ac.bbsrc.tgac.miso.tools.run.MultiFileQueueMessageSource.java

/**
 * uk.ac.bbsrc.tgac.miso.notification.core
 * <p/>
 * Modified from the source below to provide a list of files as a result, rather than
 * polling single files sequentially from the queue 
 *