-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(multi-qmgr): Enable multi queue manager and reques reply for fix…
…ed queues (#35) * Upgrade annotations, enable multiple broker connections, encapsulate request reply for fixed queues with selector listener
- Loading branch information
1 parent
0f2032a
commit 986675e
Showing
152 changed files
with
2,790 additions
and
1,547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
commons-jms-api/src/main/java/co/com/bancolombia/commons/jms/api/MQDomainMessageSender.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package co.com.bancolombia.commons.jms.api; | ||
|
||
import jakarta.jms.Destination; | ||
import reactor.core.publisher.Mono; | ||
|
||
public interface MQDomainMessageSender { | ||
Mono<String> send(String domain, Destination destination, MQMessageCreator messageCreator); | ||
|
||
Mono<String> send(String domain, MQMessageCreator messageCreator); | ||
|
||
/** | ||
* You can retrieve the MQMessageSender to avoid queries to Map | ||
* @param domain Domain name or connectionFactory bean name | ||
* @return MQMessageSender | ||
*/ | ||
MQMessageSender forDomain(String domain); | ||
} |
3 changes: 1 addition & 2 deletions
3
commons-jms-api/src/main/java/co/com/bancolombia/commons/jms/api/MQMessageSender.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
commons-jms-api/src/main/java/co/com/bancolombia/commons/jms/api/MQRequestReply.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
commons-jms-mq/src/main/java/co/com/bancolombia/commons/jms/mq/EnableMQMessageSender.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.