java.lang.Object | |
↳ | com.google.android.gms.games.multiplayer.turnbased.TurnBasedMatchConfig.Builder |
Builder class for TurnBasedMatchConfig
.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Add a player ID to invite to the match.
| |||||||||||
Add a list of player IDs to invite to the match.
| |||||||||||
Builds a new
TurnBasedMatchConfig object. | |||||||||||
Sets the auto-match criteria for the match.
| |||||||||||
Sets the variant for the match.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Add a player ID to invite to the match.
Parameters | |
---|---|
playerId |
String :
Player ID to invite to the match. |
Returns | |
---|---|
TurnBasedMatchConfig.Builder |
The builder instance. |
Add a list of player IDs to invite to the match.
Parameters | |
---|---|
playerIds |
ArrayList :
One or more player IDs to invite to the match. |
Returns | |
---|---|
TurnBasedMatchConfig.Builder |
The builder instance. |
Builds a new TurnBasedMatchConfig
object.
Returns | |
---|---|
TurnBasedMatchConfig |
The built TurnBasedMatchConfig instance.
|
Sets the auto-match criteria for the match. See
createAutoMatchCriteria(int, int, long)
.
Parameters | |
---|---|
autoMatchCriteria |
Bundle :
The criteria for auto-matching one or more players for the
match. If null , the match is created with the invited players only. |
Returns | |
---|---|
TurnBasedMatchConfig.Builder |
The builder instance. |
Sets the variant for the match. This is an optional, developer-controlled parameter
describing the type of game to play, and is used for auto-matching criteria. Must be
either a positive integer, or MATCH_VARIANT_DEFAULT
(the default)
if not desired.
Note that variants must match exactly. Thus, if you do not specify a variant, only other
matches created with MATCH_VARIANT_DEFAULT
will be considered
potential auto-matches.
Parameters | |
---|---|
variant |
int :
The variant for the match. |
Returns | |
---|---|
TurnBasedMatchConfig.Builder |
The builder instance. |