Handles stream events.
typedef
_IRQL_requires_max_(PASSIVE_LEVEL)
_Function_class_(QUIC_STREAM_CALLBACK)
QUIC_STATUS
(QUIC_API QUIC_STREAM_CALLBACK)(
_In_ HQUIC Stream,
_In_opt_ void* Context,
_Inout_ QUIC_STREAM_EVENT* Event
);
Stream
The valid handle to the stream object this event is for.
Context
The application callback context (optionally) supplied in StreamOpen, SetCallbackHandler or SetContext.
Event
A pointer to the QUIC_STREAM_EVENT payload.
This is the signature of the function that handles callbacks from MsQuic for stream events. Apps are expected to keep any execution time in the callback to a minimum.