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

キューの名前。

*Options*
Type: [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* メンバーは省略可能で、デバッグを目的としています。

options 構造体は、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](/ja-jp/reference/system/dstorage/structs/dstorage_queue_info1.md)
- [DStorage](/ja-jp/reference/system/dstorage/dstorage_members.md)
- [IDStorageQueueX2::Query1](/ja-jp/reference/system/dstorage/interfaces/IDStorageQueueX2/methods/idstoragequeuex_query1.md)
- [DirectStorage の概要](/ja-jp/build/console-features/storage/directstorage/directstorage-overview.md)
- [IDStorageFactoryX2::CreateQueue1](/ja-jp/reference/system/dstorage/interfaces/IDStorageFactoryX2/methods/idstoragefactoryx_createqueue1.md)
