Replies: 2 comments 5 replies
-
You might look into https://smallrye.io/smallrye-mutiny/2.3.1/guides/integrate-a-non-reactive-source/ |
Beta Was this translation helpful? Give feedback.
1 reply
-
Is there an example of demonstrating the connectable hot stream usage, I have tried the approach in docs, it does not work in my case. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In Spring project, I used
Sinks
to emit events into a SSE endpoint, it worked well, check:https://github.com/hantsy/spring-graphql-sample/blob/master/dgs-subscription-sse/src/main/kotlin/com/example/demo/DataFetchers.kt#L33
But when I tried to
MultiEmitterProcessor
to archive the same purpose, it failed.The example project is https://github.com/hantsy/quarkus-sandbox/tree/master/jms
And in the Resource class,
I am not sure
MultiEmitterProcessor
is good to work as a hot stream?or there are something like Reactor
ConnectableFlux
to connect to a hot stream manually?Beta Was this translation helpful? Give feedback.
All reactions