Is it possible to generate both mutiny and regular clients? #898
Replies: 2 comments 7 replies
-
Quarkus won't allow the use of Rest Classic and Rest Reactive on the same classpath. I guess everything is reactive now (https://quarkus.io/guides/rest), so we would have to review our templates and drop classic from the upcoming 3.x version. In that case, we can add a configuration that you can specify the proper behavior for each service. What is your use case for this? |
Beta Was this translation helpful? Give feedback.
-
@hbelmiro, for 3.x, I'll drop support to classic, and people who want to upgrade will have to change on their side. We can provide support for 2.x for a while and fix CVEs and whatnot, but we won't backport features anymore. I'll probably work on this on 2025/Q2. |
Beta Was this translation helpful? Give feedback.
-
I would like to generate both options. For example, have 2 api calls in the same generated RestClient for
myGetApi()
andmyGetApiReactive()
in the same classBeta Was this translation helpful? Give feedback.
All reactions