I would like to migrate my code from quarkus 2 to quarkus 3. All my code is reactive. I found some problems with stream() methods which were removed in quarkus 3.
Example code from quarkus 2. Fruit is an Entity which is stored in PG database.
return Fruit.streamAll();
How can I achieve the same result in quarkus 3? I prefer Multi<Fruit> than Uni<List<Fruit>>.
My solution is
Anyway I prefer quarkus 2
Fruit.streamAll()solution.