Package | Description |
---|---|
org.springframework.integration.amqp.channel |
Provides classes related to AMQP-backed channels.
|
org.springframework.integration.channel |
Provides classes representing various channel types.
|
org.springframework.integration.core |
Provides core classes.
|
org.springframework.integration.endpoint |
Provides core classes related to Endpoints.
|
org.springframework.integration.jms |
Base package for JMS Support.
|
Modifier and Type | Class and Description |
---|---|
class |
PollableAmqpChannel
A
PollableChannel implementation that is backed by an AMQP Queue. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractPollableChannel
Base class for all pollable channels.
|
class |
NullChannel
A channel implementation that essentially behaves like "/dev/null".
|
class |
PriorityChannel
A message channel that prioritizes messages based on a
Comparator . |
class |
QueueChannel
Simple implementation of a message channel.
|
class |
RendezvousChannel
A zero-capacity version of
QueueChannel that delegates to a
SynchronousQueue internally. |
Modifier and Type | Method and Description |
---|---|
Future<Message<?>> |
AsyncMessagingTemplate.asyncReceive(PollableChannel channel) |
Future<Message<?>> |
AsyncMessagingOperations.asyncReceive(PollableChannel channel) |
<R> Future<R> |
AsyncMessagingTemplate.asyncReceiveAndConvert(PollableChannel channel) |
<R> Future<R> |
AsyncMessagingOperations.asyncReceiveAndConvert(PollableChannel channel) |
<P> Message<P> |
MessagingOperations.receive(PollableChannel channel)
Receive a message synchronously from the specified channel, but only
wait up to a specified time for delivery.
|
<P> Message<P> |
MessagingTemplate.receive(PollableChannel channel) |
Object |
MessagingOperations.receiveAndConvert(PollableChannel channel)
Receive a message synchronously from the specified channel, but only
wait up to a specified time for delivery.
|
Object |
MessagingTemplate.receiveAndConvert(PollableChannel channel) |
Constructor and Description |
---|
PollingConsumer(PollableChannel inputChannel,
MessageHandler handler) |
Modifier and Type | Class and Description |
---|---|
class |
PollableJmsChannel |
Copyright © 2018. All rights reserved.