JIRA: https://jira.spring.io/browse/INT-3685 * Add `StompInboundChannelAdapter` to subscribe to STOMP destination and receive messages from them. Destinations can be added/removed (hence subscribed/unsubscribed) at runtime. * Add `stompMessageHandler` to the send messages to STOMP destinations. * `destination` can be extracted from `MessageHeaders`, the `destination` and `destinationExpression` are also supported. * `RECEIPT` Frame is also supported and emitted as `StompReceiptEvent` * `StompExceptionEvent` is emitted when we have a `failure` for `CONNECT` Frame or as a reaction to the `ERROR` Frame. * Introduce `StompSessionManager` abstraction to manage the single `StompSession` and allow to share it between different adapters. * Add `WebSocketStompSessionManager` implementation over `WebSocketStompClient` * Add `Reactor2TcpStompSessionManager` implementation for target Broker connections * Add `StompHeaderMapper` Address PR comments and JavaDocs Polishing according PR comments Polishing
8 lines
147 B
Groovy
8 lines
147 B
Groovy
rootProject.name = 'spring-integration'
|
|
|
|
rootDir.eachDir { dir ->
|
|
if (dir.name.startsWith('spring-integration-')) {
|
|
include ":${dir.name}"
|
|
}
|
|
}
|