Reactive programming support #486
carlopolisini
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I am using your library in a project. We have some Reactive code that returns Mono/Flux publishers, the point is that if in execute block I call that Java method and then
subscribe()
in a not-blocking way, then in case of an error there is no way to re-schedule a task since the Mono/Flux executes in another thread and the exception can't bubble up to the ExecutePicked class that call thefailure()
method.The only workaround I have found now is to call the
.block()
on the Mono/Flux. Do you eventually plan to have better core support for Reactive?Actual workaround:
Reactive function
Beta Was this translation helpful? Give feedback.
All reactions