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
After some investigation, we can provide Observable as the data type by default to manage the streaming APIs, avoiding the use of the Java StreamObserver type.
As you can see in the Design Summary section, in terms of frees algebras, assuming that R is the output type for each service:
unary services and client-to-server streaming services: they can simply return FS[R].
server-to-client and bi-directional services: they would return FS[monix.reactive.Observable[R]].
We should cover services with these variants:
Part of this job will be to figure out which pattern fits better for observer/observable patterns.
The text was updated successfully, but these errors were encountered: