-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added solace community license and code clean up
- Loading branch information
1 parent
bd57f71
commit 7a365b1
Showing
7 changed files
with
65 additions
and
221 deletions.
There are no files selected for viewing
Binary file not shown.
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
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
29 changes: 29 additions & 0 deletions
29
samples/hello-connector-solace/src/main/resources/application.properties
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,29 @@ | ||
quarkus.solace.host= | ||
quarkus.solace.vpn= | ||
quarkus.solace.authentication.basic.username= | ||
quarkus.solace.authentication.basic.password= | ||
|
||
mp.messaging.outgoing.hello-out.connector=quarkus-solace | ||
mp.messaging.outgoing.hello-out.producer.topic= | ||
#mp.messaging.outgoing.hello-out.producer.back-pressure.strategy=wait | ||
#mp.messaging.outgoing.hello-out.producer.back-pressure.buffer-capacity=1 | ||
#mp.messaging.outgoing.hello-out.producer.waitForPublishReceipt=false | ||
|
||
mp.messaging.incoming.hello-in.connector=quarkus-solace | ||
mp.messaging.incoming.hello-in.consumer.queue.enable-nacks=true | ||
mp.messaging.incoming.hello-in.consumer.queue.name= | ||
mp.messaging.incoming.hello-in.consumer.queue.type=durable-exclusive | ||
mp.messaging.incoming.hello-in.consumer.queue.discard-messages-on-failure=false | ||
mp.messaging.incoming.hello-in.consumer.queue.publish-to-error-topic-on-failure=true | ||
mp.messaging.incoming.hello-in.consumer.queue.error.topic=solace/quarkus/error | ||
|
||
mp.messaging.incoming.dynamic-destination-in.connector=quarkus-solace | ||
mp.messaging.incoming.dynamic-destination-in.consumer.queue.enable-nacks=true | ||
mp.messaging.incoming.dynamic-destination-in.consumer.queue.name= | ||
mp.messaging.incoming.dynamic-destination-in.consumer.queue.type=durable-exclusive | ||
mp.messaging.incoming.dynamic-destination-in.consumer.queue.discard-messages-on-failure=false | ||
mp.messaging.incoming.dynamic-destination-in.consumer.queue.publish-to-error-topic-on-failure=true | ||
mp.messaging.incoming.dynamic-destination-in.consumer.queue.error.topic=solace/quarkus/error | ||
|
||
mp.messaging.outgoing.dynamic-destination-out.connector=quarkus-solace | ||
mp.messaging.outgoing.dynamic-destination-out.producer.topic= |
4 changes: 4 additions & 0 deletions
4
samples/hello-solace/src/main/resources/application.properties
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,4 @@ | ||
#quarkus.solace.host=localhost:55554 | ||
#quarkus.solace.vpn=default | ||
#quarkus.solace.authentication.basic.username=admin | ||
#quarkus.solace.authentication.basic.password=admin |