Manual Reference Source Test
import {SignalingState} from 'netflux/src/index.common.doc.js'
public class | source

SignalingState

The state enum of the signaling server.

Static Member Summary

Static Public Members
public static get

CHECKED: number

4: a connection has been established with one of the group member or you are the only member of the group.

public static get

CHECKING: number

2: signaling server is checking wether you are still connected to the group.

public static get

CLOSED: number

3: the connection is closed or couldn't be opened (equivalent to WebSocket.CLOSED).

public static get

CONNECTING: number

0: the connection is not yet open (equivalent to WebSocket.CONNECTING).

public static get

OPEN: number

1: the connection is open and ready to communicate (equivalent to WebSocket.OPEN).

Static Public Members

public static get CHECKED: number source

4: a connection has been established with one of the group member or you are the only member of the group. From now the signaling is no longer needed, because the joining process will continue with a help of this member.

public static get CHECKING: number source

2: signaling server is checking wether you are still connected to the group. If it is not the case, then subscribs you to one of the group member in order to create a connection with him.

public static get CLOSED: number source

3: the connection is closed or couldn't be opened (equivalent to WebSocket.CLOSED).

public static get CONNECTING: number source

0: the connection is not yet open (equivalent to WebSocket.CONNECTING).

public static get OPEN: number source

1: the connection is open and ready to communicate (equivalent to WebSocket.OPEN).