smartuniverse/ts/smartuniverse.classes.universeconnection.ts

20 lines
432 B
TypeScript
Raw Normal View History

2019-04-24 16:20:31 +00:00
import * as plugins from './smartuniverse.plugins';
import { UniverseChannel } from './smartuniverse.classes.universechannel';
/**
2019-04-30 17:16:03 +00:00
* represents a connection to the universe
2019-04-24 16:20:31 +00:00
*/
export class UniverseConnection {
/**
* the socketClient to ping
*/
socketclient: plugins.smartsocket.SmartsocketClient;
subscribedChannels: UniverseChannel[] = [];
authenticatedChannels: UniverseChannel[] = [];
constructor() {
}
}