I have a quarkus project I try to secure some of my endpoints with a Jwt token. So far, it don’t work. everything is still accessible. my application.properties: it worth notting that the lines are in gray in my IDE ( Intellij), and my IDE say they are not used nor by my project nor it’s dependency. Speaking of dependency,
Tag: smallrye
How to call long running blocking void returning method with Mutiny reactive programming?
I have a chain of Async and Sync method invocation on Mutiny’s Uni, some methods are a long-running process with return type void. What is the proper way of invoking/calling them without blocking downstream? Below is the simple analogy code. Answer In general, use runSubscriptionOn and pass a specific executor: Note that it will constraint the concurrency to the number
Can we get parallel processing of each of Multi pipeline steps?
Lets say we have: a list of URLs, that is a source for our Multi as a first step we grab HTML of this page using HTTP client call then we try to find some specific tag and grab its content then we store things we found into database Now we have a 3 steps here. Is there a way
How do i sort a Multi in smallrye mutiny
Other reactive libraries like project reactor offer sort methods for Publishers but there is no such method in mutiny. Their documentation doesn’t even talk about it. https://smallrye.io/smallrye-mutiny Right now i’m achieving the said functionality by doing this Is there a better way to do the same ? Answer I don’t believe there is a built-in/better way to do this. Mutiny