Reputation: 3460
Consider I have a TCP server built using spring integration (TCP Inbound Gateway), which is used as request/response kind of server with the TCP connection is initiated from client (also built using spring integration) which the TCP connection is maintained and shared.
Is there a way to create stomp subscription in the same TCP inbound gateway?
Upvotes: 1
Views: 332
Reputation: 121177
Would be great if you share more background on the matter, but I think you can do any stuff within the downstream flow from the request-channel
of that <int-ip:tcp-inbound-gateway>
. E.g. <router>
or <recipient-list-router>
, <publish-subscribe-channel>
etc.
Upvotes: 1