diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-07 17:48:32 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-07 17:48:32 +0900 |
| commit | 161fd4afab323ca6bf491def473f84bb7557b481 (patch) | |
| tree | 4c8a2215dc9d3e3b817bbd82ca9b8f88fb0a0420 /src/web/app/common/scripts/streaming/server.ts | |
| parent | wip (diff) | |
| download | sharkey-161fd4afab323ca6bf491def473f84bb7557b481.tar.gz sharkey-161fd4afab323ca6bf491def473f84bb7557b481.tar.bz2 sharkey-161fd4afab323ca6bf491def473f84bb7557b481.zip | |
wip
Diffstat (limited to 'src/web/app/common/scripts/streaming/server.ts')
| -rw-r--r-- | src/web/app/common/scripts/streaming/server.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/web/app/common/scripts/streaming/server.ts b/src/web/app/common/scripts/streaming/server.ts new file mode 100644 index 0000000000..b12198d2fd --- /dev/null +++ b/src/web/app/common/scripts/streaming/server.ts @@ -0,0 +1,21 @@ +import Stream from './stream'; +import StreamManager from './stream-manager'; + +/** + * Server stream connection + */ +export class ServerStream extends Stream { + constructor() { + super('server'); + } +} + +export class ServerStreamManager extends StreamManager<ServerStream> { + public getConnection() { + if (this.connection == null) { + this.connection = new ServerStream(); + } + + return this.connection; + } +} |