Skip to content

Commit 9123637

Browse files
author
Simon MacMullen
committed
Attempt to document this outside of the impl package, I don't think people should be expected to look in there.
1 parent 48a4ce4 commit 9123637

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/com/rabbitmq/client/ShutdownListener.java

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,14 @@
1919

2020
import java.util.EventListener;
2121

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+
*/
2230
public interface ShutdownListener extends EventListener {
23-
2431
public void shutdownCompleted(ShutdownSignalException cause);
25-
2632
}

0 commit comments

Comments
 (0)