Last week i had my first ๐โจ๐ช rounds with the Mutiny library because i needed a Reactive REST endpoint in my Quarkus project. This was not as obvious as it sounds so i thought i'll share my new insights about the Mutiny library in Quarkus;
Quarkus documentation specifies the Mutiny library as the preferred library for Reactive use-cases;
For example;
what stood out is that most Mutiny examples are using a new String as an example. So, my question remained;
how do i connect MyRequestService with Mutiny in Quarkus
This would be something as:
Uni<MyRequestService> lMyRequestServiceUni = Uni.createFrom().item( ... ) ...
MyRequestService already uses a callback structure, so I tried a callback method towards Mutiny.