Open
Description
I love the new BlockingQueueItemWriter<O>
and BlockingQueueItemReader<I>
implementations, but it occurred to me you'd open even more opportunities for users of Spring Integration if you had a MessageChannelItemWriter
and MessageChannelItemReader
. Behind the scenes a default direct MessageChannel
is a Queue
, so the default experience could be very similar to with the BlockingQueue
equivalents, but MessageChannels
can also lead to Spring Integration IntegrationFlow
s, to websocvkts with Spring MVC 4's WebSocket support, to durable channels backed by JMS, Kafka, etc., to Spring Security interceptors to trap messages, to integration with Spring Cloud Data Flow as an app. All sorts of possibilities.