Skip to content

Commit 8cc34f6

Browse files
committed
Merge branch 'stable' into 4.0.x-stable
Conflicts: src/main/java/com/rabbitmq/client/RecoveryListener.java
2 parents abb2b88 + c4418c1 commit 8cc34f6

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@
644644
<repository>
645645
<id>bintray-rabbitmq-maven-milestones</id>
646646
<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>
648648
</repository>
649649
</distributionManagement>
650650
</profile>

src/main/java/com/rabbitmq/client/RecoveryListener.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,18 @@
2222
* @since 3.3.0
2323
*/
2424
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+
*/
2530
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+
*/
2638
void handleRecoveryStarted(Recoverable recoverable);
2739
}

0 commit comments

Comments
 (0)