UNPKG

sg-socket-constants

Version:
27 lines (21 loc) 613 B
/** * Events reserved by Socket.IO * @namespace ReservedEvents * @see http://socket.io/docs/server-api/ * @see http://socket.io/docs/client-api/ */ 'use strict' /** New connection established */ exports.CONNECTION = 'connection' /** Connected to server */ exports.CONNECT = 'connect' /** Re-connected to server */ exports.RECONNECT = 'reconnect' /** Failed to connected to server */ exports.CONNECT_ERROR = 'connect_error' /** Connected timeout occuor */ exports.CONNECT_TIMEOUT = 'connect_timeout' /** Disconnected from server */ exports.DISCONNECT = 'disconnect' /** Error */ exports.ERROR = 'error'