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
Stompest client can try write to temporary topic, but the client listening that topic might already be disconnected. AMQ will response with an error. stompest.async.client will call onError handlers in method _onError, one of which disconnects the client.
The text was updated successfully, but these errors were encountered:
If you wish to override the default behavior of the handler of ERROR frames you could implement your own ErrorListener, cf. the documentation.
To that end, inject a custom listenersFactory when you create an async.Stomp instance. I would suggest that you subclass async.listener.ErrorListener and create a copy of async.listener.defaultListeners in which you replace the async.listener.ErrorListener class by your customized subclass.
You could just as well monkey patch async.listener.ErrorListener directly, but that's the dirty way.
Stompest client can try write to temporary topic, but the client listening that topic might already be disconnected. AMQ will response with an error. stompest.async.client will call onError handlers in method _onError, one of which disconnects the client.
The text was updated successfully, but these errors were encountered: