diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-09 04:14:26 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-09 04:14:26 +0900 |
| commit | c78945436e39121f46e083eac7a6572ca2efe2d2 (patch) | |
| tree | b26036a9f38bda54b865e704f8bcd477f2caac0e /src/client/app/common/scripts/streaming/server-stats.ts | |
| parent | サーバーの統計情報をメモリに記憶するようにするなど (diff) | |
| download | sharkey-c78945436e39121f46e083eac7a6572ca2efe2d2.tar.gz sharkey-c78945436e39121f46e083eac7a6572ca2efe2d2.tar.bz2 sharkey-c78945436e39121f46e083eac7a6572ca2efe2d2.zip | |
#1686
Diffstat (limited to 'src/client/app/common/scripts/streaming/server-stats.ts')
| -rw-r--r-- | src/client/app/common/scripts/streaming/server-stats.ts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/client/app/common/scripts/streaming/server-stats.ts b/src/client/app/common/scripts/streaming/server-stats.ts new file mode 100644 index 0000000000..9983dfcaf0 --- /dev/null +++ b/src/client/app/common/scripts/streaming/server-stats.ts @@ -0,0 +1,30 @@ +import Stream from './stream'; +import StreamManager from './stream-manager'; +import MiOS from '../../../mios'; + +/** + * Server stats stream connection + */ +export class ServerStatsStream extends Stream { + constructor(os: MiOS) { + super(os, 'server-stats'); + } +} + +export class ServerStatsStreamManager extends StreamManager<ServerStatsStream> { + private os: MiOS; + + constructor(os: MiOS) { + super(); + + this.os = os; + } + + public getConnection() { + if (this.connection == null) { + this.connection = new ServerStatsStream(this.os); + } + + return this.connection; + } +} |