python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to instruct the QuarkusApplication to wait until the reactive vertx MySQLPool completes the execution of executeBatchAndForget statement?
We have a requirement to load a huge file to MySQL DB. I have written a simple QuarkusApplication with quarkus-reactive-mysql-client to execute a executeBatchAndForget to batch import the records int...
user1637487
Votes: 0
Answers: 0
Quarkus Mutiny and Imperitave vs Reactive
TL;DR: which is more pattern? Using Mutiny + Imperative resteasy, or just use Reactive resteasy?
My understanding is Mutiny allows for me to pass Quarkus a longer running action, and have it handle th...

Snappawapa
Votes: 0
Answers: 1
Quarkus and Panache have Example API?
I'm looking for a Quarkus API that works like Spring Data Example API in Panache but I wasn't able to find anything similar.
For those that do not know what the Example API is, you can think it as a q...
zambotn
Votes: 0
Answers: 1
How to record each throwable when using .onFailure().retry() with delay between retries
I need to record failure reason in metrics for each failed http call when using Vert.x WebClient. This compiles:
.onFailure()
.retry()
.withBackOff...

Panu Haaramo
Votes: 0
Answers: 1