-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
I'm looking at implementations of this class and it seems to me that both implementations are safe to call multiple times.
Line 174 in a9fc833
| protected void doStop(final Runnable callback) { |
Line 215 in a9fc833
| protected void doStop(final Runnable callback) { |
If we call AbstractMessageListenerContainer#stop() once it will stop containers, but if we call it second time(or multiple times) it will wait until timeout (10 sec by default).
Should this be considered as a bug?