Interface
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).
Method
ReportDisconnectedUser(userId)
Report user id who just disconnected room/lobby.
Method parameters
- Name
userId
- Type
- long
- Description
Backbone user id.
ReportDisconnectedUser(userId)
METHOD
public abstract virtual void ReportDisconnectedUser(long userId)
Method
ReportJoinedUser(userId)
Report user id who just joined room/lobby.
Method parameters
- Name
userId
- Type
- long
- Description
Backbone user id.
ReportJoinedUser(userId)
METHOD
public abstract virtual void ReportJoinedUser(long userId)
Method
ReportStatusChange()
Report any change in room/lobby that could affect any user "ready for match" status.
ReportStatusChange()
METHOD
public abstract virtual void ReportStatusChange()