File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
src/main/java/com/rabbitmq/client Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 644
644
<repository >
645
645
<id >bintray-rabbitmq-maven-milestones</id >
646
646
<name >rabbitmq-maven-milestones</name >
647
- <url >https://api.bintray.com/maven/rabbitmq/maven-milestones/java-client/;publish=1</url >
647
+ <url >https://api.bintray.com/maven/rabbitmq/maven-milestones/java-client-milestone /;publish=1</url >
648
648
</repository >
649
649
</distributionManagement >
650
650
</profile >
Original file line number Diff line number Diff line change 22
22
* @since 3.3.0
23
23
*/
24
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
+ */
25
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
+ * @param recoverable a {@link Recoverable} connection.
37
+ */
26
38
void handleRecoveryStarted (Recoverable recoverable );
27
39
}
You can’t perform that action at this time.
0 commit comments