You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 19, 2021. It is now read-only.
As the protocol caters for multiple subscriptions to be multiplexed onto a single underlying TCP connection to the message queue by using ids in the header of the message (see http://stomp.github.com//stomp-specification-1.2.html#SUBSCRIBE_id_Header) there needs to be an accompanying unsubscribe method that accepts an id.
As the protocol caters for multiple subscriptions to be multiplexed onto a single underlying TCP connection to the message queue by using
ids in the header of the message (see http://stomp.github.com//stomp-specification-1.2.html#SUBSCRIBE_id_Header) there needs to be an accompanying unsubscribe method that accepts an id.See http://stomp.github.com//stomp-specification-1.2.html#UNSUBSCRIBE
Something along the lines of:
Thanks to Dipesh Patel for reporting this.