Table of Contents

StreamReceiveComplete function

Completes a receive that was previously pended.

Syntax

typedef
_IRQL_requires_max_(DISPATCH_LEVEL)
void
(QUIC_API * QUIC_STREAM_RECEIVE_COMPLETE_FN)(
    _In_ _Pre_defensive_ HQUIC Stream,
    _In_ uint64_t BufferLength
    );

Parameters

TODO

Remarks

This is an asynchronous API but can run inline if called in a callback. The application, without setting StreamMultiReceiveEnabled, must ensure that one StreamReceiveComplete call corresponds to one QUIC_STREAM_EVENT_RECEIVE event. Duplicate StreamReceiveComplete calls after one QUIC_STREAM_EVENT_RECEIVE event are ignored silently even with different BufferLength. The StreamMultiReceiveEnabled mode doesn't follow this rule. Multiple QUIC_STREAM_EVENT_RECEIVE events can be indicated at once by StreamReceiveComplete. The application needs to keep track of accumulated TotalBufferLength with this mode.

See Also

StreamOpen
StreamClose
StreamStart
StreamShutdown
StreamSend
StreamReceiveSetEnabled