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

# PFMatchmakingTicketStatus

> 생성 중, 플레이어 대기 중, 매치됨, 취소됨 및 실패를 포함하여 PlayFab Multiplayer 매치메이킹 티켓의 가능한 상태를 열거합니다.

매치메이킹 티켓에 가능한 상태입니다.

## 구문

```cpp theme={null}
enum class PFMatchmakingTicketStatus  : uint32_t  
{  
    Creating = 0,  
    Joining = 1,  
    WaitingForPlayers = 2,  
    WaitingForMatch = 3,  
    Matched = 4,  
    Canceled = 5,  
    Failed = 6,  
}  
```

## 상수

| 상수                | 설명                                                                                                                                                                                                                                                                 |
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Creating          | 매치메이킹 티켓이 생성 중입니다.                                                                                                                                                                                                                                                 |
| Joining           | 매치메이킹 티켓에 참여 중입니다.                                                                                                                                                                                                                                                 |
| WaitingForPlayers | 매치메이킹 티켓이 해당 구성의 `membersToMatchWith` 필드에 지정된 모든 원격 사용자가 [PFMultiplayerJoinMatchmakingTicketFromId](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/functions/pfmultiplayerjoinmatchmakingticketfromid)를 통해 티켓에 참여할 때까지 대기 중입니다. |
| WaitingForMatch   | 매치메이킹 티켓이 매치를 찾을 때까지 대기 중입니다.                                                                                                                                                                                                                                      |
| Matched           | 매치메이킹 티켓이 매치를 찾았습니다.                                                                                                                                                                                                                                               |
| Canceled          | 매치메이킹 티켓이 취소되었습니다.                                                                                                                                                                                                                                                 |
| Failed            | 매치메이킹 티켓이 매치를 찾지 못했습니다.                                                                                                                                                                                                                                            |

## 요구 사항

**헤더:** PFMatchmaking.h

## 참고 항목

[PFMatchmaking 멤버](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/pfmatchmaking_members)


## Related topics

- [PFMatchmakingTicketGetStatus](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/functions/pfmatchmakingticketgetstatus.md)
- [PFMatchmakingTicketGetTicketId](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/functions/pfmatchmakingticketgetticketid.md)
- [PFMatchmakingTicketGetMatch](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/functions/pfmatchmakingticketgetmatch.md)
- [Matchmaking SDK quickstart](/ko/services/playfab/multiplayer/matchmaking/quickstart-client-sdk.md)
- [PFMultiplayerJoinMatchmakingTicketFromId](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pfmatchmaking/functions/pfmultiplayerjoinmatchmakingticketfromid.md)
