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

# game_chat_data_transport_requirement

> game_chat_data_transport_requirement

# game\_chat\_data\_transport\_requirement

나가는 데이터에 대한 데이터 전송 요구 사항을 정의합니다.

<a id="syntaxSection" />

## 구문

```cpp theme={null}
enum class game_chat_data_transport_requirement  
{  
    guaranteed,  
    best_effort,  
}  
```

<a id="constantsSection" />

## 상수

| 상수           | 설명                                                                                                                            |
| ------------ | ----------------------------------------------------------------------------------------------------------------------------- |
| guaranteed   | 데이터를 보장된 배달로 전송해야 합니다.<br /><br /> 대상 수신자가 배달 완료 전에 앱의 네트워크에서 제거된 경우가 아니면, 환경적 패킷 손실에 관계없이 데이터 배달이 보장되어야 합니다. 순차성은 필요하지 않습니다. |
| best\_effort | 데이터를 최선의 노력 배달로 전송해야 합니다.<br /><br /> 데이터 배달은 가능한 한 최선의 노력으로 전송되어야 하지만, 환경적 패킷 손실은 허용됩니다. 순차성은 필요하지 않습니다.                     |

<a id="remarksSection" />

## 설명

이 열거형은 Game Chat 2에서 나가는 데이터 프레임에 대한 데이터 전송 요구 사항을 설명합니다. 해당 [game\_chat\_data\_frame](/reference/chat/gamechat2/structs/game_chat_data_frame) 구조체의 `transport_requirement` 멤버에서 데이터 프레임에 대한 데이터 전송 요구 사항을 지정하거나 검색할 수 있습니다.

데이터 프레임 처리에 대한 자세한 내용은 [Game Chat 2 C++ API 사용](/services/xbox-services/multiplayer/chat/game-chat2/using-game-chat-2)의 [데이터 프레임 처리](/services/xbox-services/multiplayer/chat/game-chat2/using-game-chat-2#processing_data_frames) 섹션을 참조하세요.

<a id="requirementsSection" />

## 요구 사항

**헤더:** GameChat2.h

**지원 플랫폼:** Windows, XBOX One 제품군 콘솔 및 XBOX Series 콘솔

<a id="seealsoSection" />

## 관련 항목

[Game Chat 2 소개](/services/xbox-services/multiplayer/chat/game-chat2/game-chat-2-intro)\
[GameChat2 members](/reference/chat/gamechat2/gamechat2_members)


## Related topics

- [game_chat_data_frame](/ko/reference/chat/gamechat2/structs/game_chat_data_frame.md)
- [GameChat2 멤버](/ko/reference/chat/gamechat2/gamechat2_members.md)
- [Microsoft Game Development Kit 네트워킹 소개](/ko/build/console-features/networking/introduction-networking.md)
- [chat_manager::process_incoming_data](/ko/reference/chat/gamechat2/classes/chat_manager/methods/chat_manager_process_incoming_data.md)
- [chat_manager::finish_processing_data_frames](/ko/reference/chat/gamechat2/classes/chat_manager/methods/chat_manager_finish_processing_data_frames.md)
