You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Besides asynchronous context support in Rest, add ReactiveStreams Publisher and JDK 9 Flow.Publisher as a generic return type, or parameter type in Response.
Quarkus/Resteasy has implemented reactive versions.
Besides asynchronous context support in Rest, add ReactiveStreams
Publisher
and JDK 9Flow.Publisher
as a generic return type, or parameter type inResponse
.Quarkus/Resteasy has implemented reactive versions.
The following is an example of Quarkus/Resteasy Reactive, check: https://github.com/hantsy/quarkus-sandbox/blob/master/resteasy-reactive-hibernate/src/main/java/com/example/PostResource.java
Besides general Reactive Streams support, the Server Sent Event is a good match for Reactive Streams.
Publisher<ServerSentEvent>
Publisher<POJO>
and content typetext/event-stream
to transform and write the parameterized data into thedata
in the SSE stream.And MP Rest Client has already supported ReactiveStreams for a while.
The text was updated successfully, but these errors were encountered: