Example leave

Leave one- or more joined rooms. A successful leave request will respond with an array of equal length of the number of rooms.

Syntax

[scope, ...IDs]

The IDs are the room-IDs you want to leave.

The socket needs to be authorized before sending a leave request. See the auth example for how to authorize a socket connection.

Example

As an example we assume that we want to leave a joined room with Id 17. Instead of a single ID, we could add as much IDs as we wanted. As an example we also add room Id 456 which does not exist in our collection.

This is the data we want to pack (leave room Ids 17 (exists in out collection) and 456 (does not exist)):

["//stuff", 17, 456]

Serializing the above using MessagePack results in the following 13 bytes:

\x93\xa7//stuff\x11\xcd\x01\xc8

Now we create the header. For this example we just use Id 0:

  • Data length (13) \x0d\x00\x00\x00
  • Identifier (0) \x00\x00
  • Request Leave package type (39) \x27
  • Inverse type check bit (249) 0xd9

Sending the Join package

\x0d\x00\x00\x00\x00\x00\x27\xd9\x93\xa7//stuff\x11\xcd\x01\xc8

Responding [17, nil] package (room Id 17 is found, the second (456) was not)

\x03\x00\x00\x00\x00\x00\x12\xed\x92\x11\xc0

A few seconds (or less) later, you will receive a on-leave event on the socket connection for every room.

See the listening documentation for more information.

Responding {id: 17} package for room 17 which was joined in our example:

\x05\x00\x00\x00\xff\xff\x07\xf9\x81\xa2id\x11