Interface StartMatchmakingResponse.Builder

  • Method Details

    • matchmakingTicket

      StartMatchmakingResponse.Builder matchmakingTicket(MatchmakingTicket matchmakingTicket)

      Ticket representing the matchmaking request. This object include the information included in the request, ticket status, and match results as generated during the matchmaking process.

      Parameters:
      matchmakingTicket - Ticket representing the matchmaking request. This object include the information included in the request, ticket status, and match results as generated during the matchmaking process.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • matchmakingTicket

      default StartMatchmakingResponse.Builder matchmakingTicket(Consumer<MatchmakingTicket.Builder> matchmakingTicket)

      Ticket representing the matchmaking request. This object include the information included in the request, ticket status, and match results as generated during the matchmaking process.

      This is a convenience method that creates an instance of the MatchmakingTicket.Builder avoiding the need to create one manually via MatchmakingTicket.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to matchmakingTicket(MatchmakingTicket).

      Parameters:
      matchmakingTicket - a consumer that will call methods on MatchmakingTicket.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: