public class

ErrorCodes

extends Object
java.lang.Object
   ↳ sg.com.temasys.skylink.sdk.rtc.ErrorCodes

Summary

Constants
int DISCONNECT_UNEXPECTED_ERROR User is disconnected due to an unexpected error
int REDIRECT_REASON_DUPLICATED_LOGIN The server detects a duplicated login with the same credentials provided.
int REDIRECT_REASON_EXPIRED The user is attempting to join a persistent room that has ended.
int REDIRECT_REASON_FAST_MSG The user is jamming the system with many continuous messages send less than the interval.
int REDIRECT_REASON_LOCKED The user is locked out from the room from joining.
int REDIRECT_REASON_ROOM_CLOSED The user is rejected from the room because the persistent room has ended.
int REDIRECT_REASON_ROOM_FULL The user is unable to join the room as room is already full.
int REDIRECT_REASON_ROOM_TO_CLOSED The user is warned that the room is closing soon.
int REDIRECT_REASON_SEAT_QUOTA The user is unable to join due to insufficient seat quota for the App Key.
int REDIRECT_REASON_SERVER_ERROR The server has an exception occurring.
int REDIRECT_REASON_UNKNOWN The user is redirected due to an unknown reason
int REDIRECT_REASON_VERIFICATION There is a verification issue with the user.
int SIGNALING_CONNECTION_ERROR Error message from Socket.io connection
int UNEXPECTED_ERROR_ROOM_PARAMETERS Error message when room parameters cannot be fetched
int VIDEO_SWITCH_CAMERA_ERROR Unable to switch camera
Public Constructors
ErrorCodes()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final int DISCONNECT_UNEXPECTED_ERROR

User is disconnected due to an unexpected error

Constant Value: 11 (0x0000000b)

public static final int REDIRECT_REASON_DUPLICATED_LOGIN

The server detects a duplicated login with the same credentials provided.

Constant Value: 3 (0x00000003)

public static final int REDIRECT_REASON_EXPIRED

The user is attempting to join a persistent room that has ended.

Constant Value: 6 (0x00000006)

public static final int REDIRECT_REASON_FAST_MSG

The user is jamming the system with many continuous messages send less than the interval.

Constant Value: 0 (0x00000000)

public static final int REDIRECT_REASON_LOCKED

The user is locked out from the room from joining.

Constant Value: 1 (0x00000001)

public static final int REDIRECT_REASON_ROOM_CLOSED

The user is rejected from the room because the persistent room has ended.

Constant Value: 7 (0x00000007)

public static final int REDIRECT_REASON_ROOM_FULL

The user is unable to join the room as room is already full.

Constant Value: 2 (0x00000002)

public static final int REDIRECT_REASON_ROOM_TO_CLOSED

The user is warned that the room is closing soon.

Constant Value: 8 (0x00000008)

public static final int REDIRECT_REASON_SEAT_QUOTA

The user is unable to join due to insufficient seat quota for the App Key.

Constant Value: 9 (0x00000009)

public static final int REDIRECT_REASON_SERVER_ERROR

The server has an exception occurring.

Constant Value: 4 (0x00000004)

public static final int REDIRECT_REASON_UNKNOWN

The user is redirected due to an unknown reason

Constant Value: 10 (0x0000000a)

public static final int REDIRECT_REASON_VERIFICATION

There is a verification issue with the user.

Constant Value: 5 (0x00000005)

public static final int SIGNALING_CONNECTION_ERROR

Error message from Socket.io connection

Constant Value: 12 (0x0000000c)

public static final int UNEXPECTED_ERROR_ROOM_PARAMETERS

Error message when room parameters cannot be fetched

Constant Value: 14 (0x0000000e)

public static final int VIDEO_SWITCH_CAMERA_ERROR

Unable to switch camera

Constant Value: 13 (0x0000000d)

Public Constructors

public ErrorCodes ()