Use to listen to room networking events like joining a networked room
For example: this.context.connection.beginListen(RoomEvents.JoinedRoom, () => { })

Enumeration Members

Join: "join-room"

Internal: Sent to the server when attempting to join a room

JoinedRoom: "joined-room"

Incoming: When the local user has joined a room

Leave: "leave-room"

Internal: Sent to the server when attempting to leave a room

LeftRoom: "left-room"

Incoming: When the local user has left a room

RoomStateSent: "room-state-sent"

When a user joins a room, the server sends the entire room state. Afterwards, the server sends the room-state-sent event.

UserJoinedRoom: "user-joined-room"

Incoming: When a other user has joined the room

UserLeftRoom: "user-left-room"

Incoming: When a other user has left the room