> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DSTORAGE_QUEUE_INFO

> DSTORAGE_QUEUE_INFO

# DSTORAGE\_QUEUE\_INFO

Properties and current state of a DirectStorage queue.

## Syntax

```cpp theme={null}
struct DSTORAGE_QUEUE_INFO {  
    DSTORAGE_QUEUE_DESC Desc;
    UINT16 EmptySlotCount;
    UINT16 RequestCountUntilAutoSubmit;
}  
```

### Members

*Desc*\
Type: DSTORAGE\_QUEUE\_DESC

The [DSTORAGE\_QUEUE\_DESC](/reference/system/dstorage/structs/dstorage_queue_desc) structure used for creation of the queue.

*EmptySlotCount*\
Type: UINT16

The number of available empty slots. If a queue is empty, the number of empty slots equals capacity - 1. The reserved slot distinguishes between empty and full cases.

*RequestCountUntilAutoSubmit*\
Type: UINT16

The number of entries that need to be enqueued to trigger automatic submission.

## Remarks

This structure is used by the [IDStorageQueueX::Query](/reference/system/dstorage/interfaces/IDStorageQueueX/methods/idstoragequeuex_query) method.

If a queue is empty, *EmptySlotCount* equals capacity - 1. The reserved slot distinguishes between empty and full cases.

## Requirements

**Header:** dstorage\_xs.h

**Supported platforms:** XBOX Series consoles

## See also

[IDStorageQueueX::Query](/reference/system/dstorage/interfaces/IDStorageQueueX/methods/idstoragequeuex_query)\
[DStorage](/reference/system/dstorage/dstorage_members)


## Related topics

- [DSTORAGE_QUEUE_DESC](/reference/system/dstorage/structs/dstorage_queue_desc.md)
- [IDStorageQueueX::Query](/reference/system/dstorage/interfaces/IDStorageQueueX/methods/idstoragequeuex_query.md)
- [DStorage](/reference/system/dstorage/dstorage_members.md)
- [DSTORAGE_REQUEST_SOURCE_TYPE](/reference/system/dstorage/enums/dstorage_request_source_type.md)
- [DSTORAGE_QUEUE_INFO1](/reference/system/dstorage/structs/dstorage_queue_info1.md)
