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.
2 parents 9fbd704 + 72075a7 commit 87e1a10Copy full SHA for 87e1a10
src/main/java/com/rabbitmq/client/RecoveryListener.java
@@ -22,6 +22,18 @@
22
* @since 3.3.0
23
*/
24
public interface RecoveryListener {
25
+ /**
26
+ * Invoked when automatic connection recovery has completed.
27
+ * This includes topology recovery if it was enabled.
28
+ * @param recoverable a {@link Recoverable} connection.
29
+ */
30
void handleRecovery(Recoverable recoverable);
31
+
32
33
+ * Invoked before automatic connection recovery starts.
34
+ * This means no recovery steps were performed at this point
35
+ * during recovery process.
36
37
38
void handleRecoveryStarted(Recoverable recoverable);
39
}
0 commit comments