/// <summary> /// Get a matchmaking queue configuration. /// </summary> public static void GetMatchmakingQueue(GetMatchmakingQueueRequest request, Action <GetMatchmakingQueueResult> resultCallback, Action <PlayFabError> errorCallback, object customData = null, Dictionary <string, string> extraHeaders = null) { var context = (request == null ? null : request.AuthenticationContext) ?? PlayFabSettings.staticPlayer; PlayFabHttp.MakeApiCall("/Match/GetMatchmakingQueue", request, AuthType.EntityToken, resultCallback, errorCallback, customData, extraHeaders, context); }
/// <summary> /// Get a matchmaking queue configuration. /// </summary> public static void GetMatchmakingQueue(GetMatchmakingQueueRequest request, Action <GetMatchmakingQueueResult> resultCallback, Action <PlayFabError> errorCallback, object customData = null, Dictionary <string, string> extraHeaders = null) { PlayFabHttp.MakeApiCall("/Match/GetMatchmakingQueue", request, AuthType.EntityToken, resultCallback, errorCallback, customData, extraHeaders); }