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
Currently MsQuic provides an upcall to the application on every stream receive operation where the application needs to then copy the data to a local buffer to post a Recv complete. For use case like request/response with serialized data, the deserialization cannot be performed without receiving the entire data.
Proposed solution
Provide a feature where the application can specify the intent to be notified only after receiving all the data for the stream. This way the MsQuic buffer itself can be utilized directly by the application to deserialize the message when required to help improve perf.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the feature you'd like supported
Currently MsQuic provides an upcall to the application on every stream receive operation where the application needs to then copy the data to a local buffer to post a Recv complete. For use case like request/response with serialized data, the deserialization cannot be performed without receiving the entire data.
Proposed solution
Provide a feature where the application can specify the intent to be notified only after receiving all the data for the stream. This way the MsQuic buffer itself can be utilized directly by the application to deserialize the message when required to help improve perf.
Additional context
No response
The text was updated successfully, but these errors were encountered: