Available in the Gaming / Industries Circle
quantum | v2 switch to V1  

API-ITournamentMatchController

Namespace: Gimmebreak.Backbone.Tournaments

Inheritance: Object → ITournamentMatchController

This interface provides set of methods for user to interact with tournament hub via connected tournament match handler (ITournamentMatchCallbackHandler). After tournament hub controller (ITournamentHubController) is requested to join a specific match then controller implementing this interaface is provided to tournament match handler. Use tournament match controller to report changes driven by games room/lobby handling API (E.g. player joined the room).

public interface ITournamentMatchController

Contents

Methods

ReportDisconnectedUser(long)

Report user id who just disconnected room/lobby.

public abstract virtual void ReportDisconnectedUser(long userId)

Parameters

  • userId: Backbone user id.

Back To Top
 

ReportJoinedUser(long)

Report user id who just joined room/lobby.

public abstract virtual void ReportJoinedUser(long userId)

Parameters

  • userId: Backbone user id.

Back To Top
 

ReportStatusChange()

Report any chage in room/lobby that could affect any user "ready for match" status.

public abstract virtual void ReportStatusChange()

To Document Top