> ## 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*\
Type: [DSTORAGE\_REQUEST\_SOURCE\_TYPE](/reference/system/dstorage/enums/dstorage_request_source_type)

キューが受け付けることができる要求のソース タイプ。

*Capacity*\
Type: UINT16

このキューが保持できる要求の最大数。この値は `DSTORAGE_MIN_QUEUE_CAPACITY` と `DSTORAGE_MAX_QUEUE_CAPACITY` の値の間である必要があります。

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

このキュー内の要求の優先度。

*Name*\
Type: 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](/ja-jp/reference/system/dstorage/structs/dstorage_queue_info.md)
- [DStorage](/ja-jp/reference/system/dstorage/dstorage_members.md)
- [IDStorageFactoryX::CreateQueue](/ja-jp/reference/system/dstorage/interfaces/IDStorageFactoryX/methods/idstoragefactoryx_createqueue.md)
- [IDStorageQueueX::Query](/ja-jp/reference/system/dstorage/interfaces/IDStorageQueueX/methods/idstoragequeuex_query.md)
- [DSTORAGE_REQUEST_SOURCE_TYPE](/ja-jp/reference/system/dstorage/enums/dstorage_request_source_type.md)
