We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48a4ce4 commit 9123637Copy full SHA for 9123637
src/com/rabbitmq/client/ShutdownListener.java
@@ -19,8 +19,14 @@
19
20
import java.util.EventListener;
21
22
+/**
23
+ * Interface that can receive information about the shutdown of connections and
24
+ * channels. Note that when a connection is shut down, any channels are also
25
+ * considered shut down and any ShutdownListeners then have will fire.
26
+ *
27
+ * @see ShutdownNotifier
28
+ * @see ShutdownSignalException
29
+ */
30
public interface ShutdownListener extends EventListener {
-
31
public void shutdownCompleted(ShutdownSignalException cause);
32
}
0 commit comments