Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.55 KB

File metadata and controls

57 lines (36 loc) · 1.55 KB
author title description ms.author ms.topic ms.service ms.date
ScottMunroMS
PFMatchmakingTicketConfiguration
Defines the configuration for a matchmaking ticket.
scmunro
reference
playfab
02/25/2023

PFMatchmakingTicketConfiguration

Defines the configuration for a matchmaking ticket.

Syntax

struct PFMatchmakingTicketConfiguration {  
    uint32_t timeoutInSeconds;  
    const char* queueName;  
    uint32_t membersToMatchWithCount;  
    const PFEntityKey* membersToMatchWith;  
}  

Members

timeoutInSeconds   uint32_t

How long to attempt matchmaking the ticket, in seconds.

queueName   const char*
is null-terminated

The name of a match queue.

membersToMatchWithCount   uint32_t

The number of other specific users expected to join the ticket.

membersToMatchWith   const PFEntityKey*
array of size membersToMatchWithCount

The PlayFab Entity Keys of other specific users expected to join the ticket.

This field specifies the number of other specific users expected to join the ticket. Typically this list represents a group of friends or fireteam that are looking for a match together. A match can't be found until all specified users join the ticket via PFMultiplayerJoinMatchmakingTicketFromId.

Requirements

Header: PFMatchmaking.h

See also

PFMatchmaking members