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
I was reading all your doc but I can not found if grpc-kotlin lib has a backpressure implementation that could block the suspendable flow.emit() function.
Also if that is working, how could I configure buffer sizes?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
gRPC for Kotlin exerts backpressure the same way flows in general in Kotlin do: they request elements at the rate the consumer finishes with them. You can add a buffer by just calling the normal Flow.buffer.
Hi!
I found some references about backpressure and rxjava on other implementations: https://github.com/salesforce/reactive-grpc#back-pressure
I was reading all your doc but I can not found if grpc-kotlin lib has a backpressure implementation that could block the suspendable
flow.emit()
function.Also if that is working, how could I configure buffer sizes?
Thanks in advance!
The text was updated successfully, but these errors were encountered: