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

> DSTORAGE_QUEUE_DESC

# DSTORAGE\_QUEUE\_DESC

DirectStorage 큐의 속성입니다.

## 구문

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

### 멤버

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

큐가 수락할 수 있는 요청의 소스 유형입니다.

*Capacity*\
형식: UINT16

이 큐가 보유할 수 있는 최대 요청 수입니다. 이 값은 `DSTORAGE_MIN_QUEUE_CAPACITY`와 `DSTORAGE_MAX_QUEUE_CAPACITY` 값 사이여야 합니다.

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

이 큐 내 요청의 우선 순위입니다.

*Name*\
형식: const CHAR \*

큐의 이름입니다.

## 설명

이 구조체는 [IDStorageFactoryX::CreateQueue](/reference/system/dstorage/interfaces/IDStorageFactoryX/methods/idstoragefactoryx_createqueue) 메서드에서 사용되며 [DSTORAGE\_QUEUE\_INFO](/reference/system/dstorage/structs/dstorage_queue_info) 구조체에 나타납니다.

*Name* 멤버는 선택 사항이며 디버깅 목적으로 사용됩니다.

자세한 내용은 [DirectStorage 개요](/build/console-features/storage/directstorage/directstorage-overview)의 "IDStorageQueueX" 섹션을 참조하세요.

## 요구 사항

**헤더:** dstorage\_xs.h

**지원되는 플랫폼:** XBOX Series 콘솔

## 함께 보기

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


## Related topics

- [DSTORAGE_QUEUE_INFO](/ko/reference/system/dstorage/structs/dstorage_queue_info.md)
- [DStorage](/ko/reference/system/dstorage/dstorage_members.md)
- [DSTORAGE_REQUEST_SOURCE_TYPE](/ko/reference/system/dstorage/enums/dstorage_request_source_type.md)
- [IDStorageFactoryX::CreateQueue](/ko/reference/system/dstorage/interfaces/IDStorageFactoryX/methods/idstoragefactoryx_createqueue.md)
- [IDStorageQueueX::Query](/ko/reference/system/dstorage/interfaces/IDStorageQueueX/methods/idstoragequeuex_query.md)
