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

# PFLobbyUpdatedStateChange

> 로비의 공유 또는 멤버 데이터가 수정되어 클라이언트가 상태를 새로 고쳐야 할 때 발생하는 Updated PlayFab Multiplayer 상태 변경의 세부 정보입니다.

*Updated* 상태 변경 유형과 관련된 정보입니다.

## 구문

```cpp theme={null}
struct PFLobbyUpdatedStateChange : PFLobbyStateChange {  
    PFLobbyHandle lobby;  
    bool ownerUpdated;  
    bool maxMembersUpdated;  
    bool accessPolicyUpdated;  
    bool membershipLockUpdated;  
    uint32_t updatedSearchPropertyCount;  
    const char* const* updatedSearchPropertyKeys;  
    uint32_t updatedLobbyPropertyCount;  
    const char* const* updatedLobbyPropertyKeys;  
    uint32_t memberUpdateCount;  
    const PFLobbyMemberUpdateSummary* memberUpdates;  
    bool serverUpdated;  
    uint32_t updatedServerPropertyCount;  
    const char* const* updatedServerPropertyKeys;  
    bool serverConnectionStatusUpdated;  
    bool restrictInvitesToLobbyOwnerUpdated;  
}  
```

### 멤버

**`lobby`**   PFLobbyHandle\
*null이 아니어야 함*

업데이트된 로비입니다.

**`ownerUpdated`**   bool

로비의 소유자가 업데이트되었는지를 나타내는 플래그입니다.

**`maxMembersUpdated`**   bool

로비에 허용된 최대 멤버 수가 업데이트되었는지를 나타내는 플래그입니다.

**`accessPolicyUpdated`**   bool

로비의 액세스 정책이 업데이트되었는지를 나타내는 플래그입니다.

**`membershipLockUpdated`**   bool

로비의 멤버십 잠금이 업데이트되었는지를 나타내는 플래그입니다.

**`updatedSearchPropertyCount`**   uint32\_t

업데이트된 검색 속성의 수입니다.

**`updatedSearchPropertyKeys`**   const char\* const\*\
*크기 `updatedSearchPropertyCount`의 배열*

업데이트된 검색 속성의 키입니다.

**`updatedLobbyPropertyCount`**   uint32\_t

업데이트된 로비 속성의 수입니다.

**`updatedLobbyPropertyKeys`**   const char\* const\*\
*크기 `updatedLobbyPropertyCount`의 배열*

업데이트된 로비 속성의 키입니다.

**`memberUpdateCount`**   uint32\_t

로비 멤버에 대한 업데이트 수입니다.

**`memberUpdates`**   const [PFLobbyMemberUpdateSummary](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/structs/pflobbymemberupdatesummary)\*\
*크기 `memberUpdateCount`의 배열*

멤버 업데이트 집합입니다.

**`serverUpdated`**   bool

클라이언트 소유 로비의 참여한 서버가 변경되었는지를 나타내는 플래그입니다.

**`updatedServerPropertyCount`**   uint32\_t

클라이언트 소유 로비의 참여한 서버에 대해 업데이트된 속성의 수입니다.

**`updatedServerPropertyKeys`**   const char\* const\*\
*크기 `updatedServerPropertyCount`의 배열*

클라이언트 소유 로비의 참여한 서버에 대해 업데이트된 속성의 키입니다.

**`serverConnectionStatusUpdated`**   bool

로비 서버의 연결 상태가 변경되었는지를 나타내는 플래그입니다.

**`restrictInvitesToLobbyOwnerUpdated`**   bool

로비 소유자로 초대를 제한하는 로비 정책이 변경되었는지를 나타내는 플래그입니다.

## 설명

이 상태 변경은 로비가 업데이트되었음을 나타내며 변경된 값에 대한 힌트를 제공합니다. [PFMultiplayerStartProcessingLobbyStateChanges()](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pfmultiplayerstartprocessinglobbystatechanges)에 대한 단일 호출에서 여러 업데이트가 제공될 수 있습니다. PFMultiplayerStartProcessingLobbyStateChanges()가 호출될 때 이러한 업데이트에 반영된 모든 상태가 동시에 사용 가능해지므로 업데이트를 개별적으로 또는 일괄적으로 조정할 수 있습니다.

## 요구 사항

**헤더:** PFLobby.h

## 참고 항목

[PFLobby 멤버](/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/pflobby_members)


## Related topics

- [PFLobbyGetOwner](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pflobbygetowner.md)
- [PFLobbyGetAccessPolicy](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pflobbygetaccesspolicy.md)
- [PFLobbyGetMembershipLock](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pflobbygetmembershiplock.md)
- [PFLobbyGetMaxMemberCount](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pflobbygetmaxmembercount.md)
- [PFLobbyGetRestrictInvitesToLobbyOwner](/ko/services/playfab/multiplayer/lobby/playfabmultiplayerreference-cpp/pflobby/functions/pflobbygetrestrictinvitestolobbyowner.md)
