summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/streaming/notes-stats.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/common/scripts/streaming/notes-stats.ts')
-rw-r--r--src/client/app/common/scripts/streaming/notes-stats.ts30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/client/app/common/scripts/streaming/notes-stats.ts b/src/client/app/common/scripts/streaming/notes-stats.ts
deleted file mode 100644
index 9e3e78a709..0000000000
--- a/src/client/app/common/scripts/streaming/notes-stats.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import Stream from './stream';
-import StreamManager from './stream-manager';
-import MiOS from '../../../mios';
-
-/**
- * Notes stats stream connection
- */
-export class NotesStatsStream extends Stream {
- constructor(os: MiOS) {
- super(os, 'notes-stats');
- }
-}
-
-export class NotesStatsStreamManager extends StreamManager<NotesStatsStream> {
- private os: MiOS;
-
- constructor(os: MiOS) {
- super();
-
- this.os = os;
- }
-
- public getConnection() {
- if (this.connection == null) {
- this.connection = new NotesStatsStream(this.os);
- }
-
- return this.connection;
- }
-}