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
The core message listeners have the ability to interrupt messages currently being processed which works with synchronous message listeners by interrupting the thread. This doesnt work for asynchronous listeners as it will be run on it's own thread.
This should make it so that the CompletableFuture returned by the message listener is cancelled and it is up to the message listener to be able to handle this situation.
The text was updated successfully, but these errors were encountered:
The core message listeners have the ability to interrupt messages currently being processed which works with synchronous message listeners by interrupting the thread. This doesnt work for asynchronous listeners as it will be run on it's own thread.
This should make it so that the
CompletableFuture
returned by the message listener is cancelled and it is up to the message listener to be able to handle this situation.The text was updated successfully, but these errors were encountered: