Skip to content

Commit

Permalink
Change text: micrometer to MicroProfile
Browse files Browse the repository at this point in the history
The Emitter is not from Micrometer but MicroProfile. 

Signed-off-by: Syed M Shaaf <[email protected]>
  • Loading branch information
sshaaf authored and jmle committed Dec 10, 2024
1 parent 5400e1b commit 893ba8f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
url: https://quarkus.io/guides
- title: Emitter (Microprofile Reactive Streams Messaging)
url: https://smallrye.io/smallrye-reactive-messaging/2.0.2/apidocs/org/eclipse/microprofile/reactive/messaging/Emitter.html
message: "JMS `Queue`s should be replaced with Micrometer `Emitter`s feeding a Channel.
message: "JMS `Queue`s should be replaced with MicroProfile `Emitter`s feeding a Channel.
See the following example of migrating\n a Queue to an Emitter:\n \n Before:\n
```\n @Resource(lookup = \"java:/queue/HELLOWORLDMDBQueue\")\n private Queue queue;\n
```\n \n After:\n ```\n @Inject\n @Channel(\"HELLOWORLDMDBQueue\")\n Emitter<String>
Expand All @@ -115,7 +115,7 @@
url: https://quarkus.io/guides
- title: Emitter (Microprofile Reactive Streams Messaging)
url: https://smallrye.io/smallrye-reactive-messaging/2.0.2/apidocs/org/eclipse/microprofile/reactive/messaging/Emitter.html
message: "JMS `Topic`s should be replaced with Micrometer `Emitter`s feeding a Channel.
message: "JMS `Topic`s should be replaced with MicroProfile `Emitter`s feeding a Channel.
See the following example of migrating\n a Topic to an Emitter:\n \n Before:\n
```\n @Resource(lookup = \"java:/topic/HELLOWORLDMDBTopic\")\n private Topic topic;\n
```\n \n After:\n ```\n @Inject\n @Channel(\"HELLOWORLDMDBTopic\")\n Emitter<String>
Expand Down

0 comments on commit 893ba8f

Please sign in to comment.