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

DirectStorage 큐의 속성입니다.

## 구문

```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  
```

### 멤버

*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 \*

큐의 이름입니다.

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

이 큐와 연결된 옵션입니다.

## 설명

이 구조체는 [IDStorageFactoryX::CreateQueue1](/reference/system/dstorage/interfaces/IDStorageFactoryX2/methods/idstoragefactoryx_createqueue1) 메서드에서 사용되며 [DSTORAGE\_QUEUE\_INFO1](/reference/system/dstorage/structs/dstorage_queue_info1) 구조체에 나타납니다.

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

옵션 구조체를 통해 DirectStorage 큐의 자동 제출 기능을 비활성화할 수 있습니다.

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

## 요구 사항

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

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

## 함께 보기

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


## Related topics

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