Wins
Wins

Reputation: 3460

How can I create stomp subscription using spring integration TCP Inbound Gateway?

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

Answers (1)

Artem Bilan
Artem Bilan

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

Related Questions