Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 109c5197f3 | |||
| c3d47c1f50 |
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartsocket",
|
"name": "@pushrocks/smartsocket",
|
||||||
"version": "1.1.37",
|
"version": "1.1.38",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartsocket",
|
"name": "@pushrocks/smartsocket",
|
||||||
"version": "1.1.37",
|
"version": "1.1.38",
|
||||||
"description": "easy and secure websocket communication",
|
"description": "easy and secure websocket communication",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
|
|||||||
@@ -51,12 +51,12 @@ export let allSocketConnections = new Objectmap<SocketConnection>();
|
|||||||
* class SocketConnection represents a websocket connection
|
* class SocketConnection represents a websocket connection
|
||||||
*/
|
*/
|
||||||
export class SocketConnection {
|
export class SocketConnection {
|
||||||
alias: string;
|
public alias: string;
|
||||||
side: TSocketConnectionSide;
|
public side: TSocketConnectionSide;
|
||||||
authenticated: boolean = false;
|
public authenticated: boolean = false;
|
||||||
role: SocketRole;
|
public role: SocketRole;
|
||||||
smartsocketHost: Smartsocket;
|
public smartsocketHost: Smartsocket;
|
||||||
socket: any; // SocketIO.Socket | SocketIOClient.Socket
|
public socket: SocketIO.Socket | SocketIOClient.Socket;
|
||||||
constructor(optionsArg: ISocketConnectionConstructorOptions) {
|
constructor(optionsArg: ISocketConnectionConstructorOptions) {
|
||||||
this.alias = optionsArg.alias;
|
this.alias = optionsArg.alias;
|
||||||
this.authenticated = optionsArg.authenticated;
|
this.authenticated = optionsArg.authenticated;
|
||||||
|
|||||||
Reference in New Issue
Block a user