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
AbstractServerStream.writeMessage if no headers have been sent will immediately flush an empty header to the transport, by triggering internalSendFrame(flush = true)
In the case of a unary response we don't delay the flush of the framed message to allow the trailers to be flushed at the same time.
Will work on a PR
The text was updated successfully, but these errors were encountered:
#274 manually introduces the optimized flush behavior to OkHttp (because it was missing the flush outright). It would be nice if we could tell the transport to flush or not, since we could even want to batch across RPCs.
@ejona86 @nmittler
Will work on a PR
The text was updated successfully, but these errors were encountered: