// wdfio.h
typedef enum _WDF_IO_QUEUE_DISPATCH_TYPE {
WdfIoQueueDispatchInvalid = 0,
WdfIoQueueDispatchSequential,
WdfIoQueueDispatchParallel,
WdfIoQueueDispatchManual,
WdfIoQueueDispatchMax
} WDF_IO_QUEUE_DISPATCH_TYPE;
View the official Windows Driver Kit DDI reference// wudfddi_types.h
typedef enum _WDF_IO_QUEUE_DISPATCH_TYPE {
WdfIoQueueDispatchSequential,
WdfIoQueueDispatchParallel,
WdfIoQueueDispatchManual,
WdfIoQueueDispatchMaximum
} WDF_IO_QUEUE_DISPATCH_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF and UMDF]
The WDF_IO_QUEUE_DISPATCH_TYPE enumeration type identifies the request dispatching methods that can be associated with a framework queue object.
WdfIoQueueDispatchInvalid:0Reserved for internal use.
WdfIoQueueDispatchSequentialThe I/O queue's requests are presented to the driver's request handlers one at a time. The framework does not deliver the next request until a driver has called WdfRequestComplete to complete the current request.
WdfIoQueueDispatchParallelThe framework presents requests to the driver's request handlers as soon as the requests are available.
WdfIoQueueDispatchManualThe framework places requests into the queue but does not deliver them to the driver. The driver must retrieve requests from the queue by calling WdfIoQueueRetrieveNextRequest.
WdfIoQueueDispatchMaxReserved for internal use only.
For more information, see Dispatching Methods for I/O Requests.
[Warning: UMDF 2 is the latest version of UMDF and supersedes UMDF 1. All new UMDF drivers should be written using UMDF 2. No new features are being added to UMDF 1 and there is limited support for UMDF 1 on newer versions of Windows 10. Universal Windows drivers must use UMDF 2. For more info, see Getting Started with UMDF.]
The WDF_IO_QUEUE_DISPATCH_TYPE enumeration contains values that identify how a driver must receive requests from an I/O queue.
WdfIoQueueDispatchSequentialThe I/O queue's requests are presented to the driver's I/O queue callback functions one at a time. The framework delivers the next request after the driver calls the IWDFIoRequest::Complete method to complete the current request.
WdfIoQueueDispatchParallelThe framework presents requests to the driver's I/O queue callback functions as soon as the requests are available.
WdfIoQueueDispatchManualThe framework places requests into the queue but does not deliver them to the driver. The driver must call the IWDFIoQueue::RetrieveNextRequest method to retrieve a request from the queue.
WdfIoQueueDispatchMaximumValid enumeration values were exceeded.
IWDFIoQueue::RetrieveNextRequest