(final Object arg)
| 1071 | // 2. Terminate all connections. |
| 1072 | final class DisconnectCB implements Callback<Object, Object> { |
| 1073 | public Object call(final Object arg) { |
| 1074 | return disconnectEverything().addCallback(new ReleaseResourcesCB()); |
| 1075 | } |
| 1076 | public String toString() { |
| 1077 | return "disconnect callback"; |
| 1078 | } |
nothing calls this directly
no test coverage detected