> ## 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_DESC1

> DSTORAGE_QUEUE_DESC1

# DSTORAGE\_QUEUE\_DESC1

Properties of a DirectStorage queue.

## Syntax

```cpp theme={null}
typedef struct DSTORAGE_QUEUE_DESC1 {  
    DSTORAGE_REQUEST_SOURCE_TYPE SourceType;  
    UINT16 Capacity;  
    DSTORAGE_PRIORITY Priority;  
    const CHAR *Name;
    DSTORAGE_QUEUE_OPTIONS Options;  
} DSTORAGE_QUEUE_DESC1  
```

### Members

*SourceType*\
Type: [DSTORAGE\_REQUEST\_SOURCE\_TYPE](/reference/system/dstorage/enums/dstorage_request_source_type)

The source type of requests the queue can accept.

*Capacity*\
Type: UINT16

The maximum number of requests this queue can hold. This value must be between the values of `DSTORAGE_MIN_QUEUE_CAPACITY` and `DSTORAGE_MAX_QUEUE_CAPACITY`.

*Priority*\
Type: [DSTORAGE\_PRIORITY](/reference/system/dstorage/enums/dstorage_priority)

The priority of the requests in this queue.

*Name*\
Type: const CHAR \*

The name of the queue.

*Options*
Type: [DSTORAGE\_QUEUE\_OPTIONS](/reference/system/dstorage/structs/dstorage_queue_options)

The options associated with this queue.

## Remarks

This structure is used by the [IDStorageFactoryX::CreateQueue1](/reference/system/dstorage/interfaces/IDStorageFactoryX2/methods/idstoragefactoryx_createqueue1) method and appears in the [DSTORAGE\_QUEUE\_INFO1](/reference/system/dstorage/structs/dstorage_queue_info1) structure.

The *Name* member is optional and intended for debugging.

The options struct has the ability to disable the auto-submit feature of the DirectStorage Queue.

For more information, see the "IDStorageQueueX" section in [DirectStorage Overview](/build/console-features/storage/directstorage/directstorage-overview).

## Requirements

**Header:** dstorage\_xs.h

**Supported platforms:** XBOX Series consoles

## See also

[DStorage](/reference/system/dstorage/dstorage_members)


## Related topics

- [DSTORAGE_QUEUE_INFO1](/reference/system/dstorage/structs/dstorage_queue_info1.md)
- [IDStorageQueueX2::Query1](/reference/system/dstorage/interfaces/IDStorageQueueX2/methods/idstoragequeuex_query1.md)
- [DStorage](/reference/system/dstorage/dstorage_members.md)
- [DirectStorage Overview](/build/console-features/storage/directstorage/directstorage-overview.md)
- [IDStorageFactoryX2::CreateQueue1](/reference/system/dstorage/interfaces/IDStorageFactoryX2/methods/idstoragefactoryx_createqueue1.md)
