summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/othello.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-07 17:48:32 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-07 17:48:32 +0900
commit161fd4afab323ca6bf491def473f84bb7557b481 (patch)
tree4c8a2215dc9d3e3b817bbd82ca9b8f88fb0a0420 /src/web/app/common/scripts/streaming/othello.ts
parentwip (diff)
downloadsharkey-161fd4afab323ca6bf491def473f84bb7557b481.tar.gz
sharkey-161fd4afab323ca6bf491def473f84bb7557b481.tar.bz2
sharkey-161fd4afab323ca6bf491def473f84bb7557b481.zip
wip
Diffstat (limited to 'src/web/app/common/scripts/streaming/othello.ts')
-rw-r--r--src/web/app/common/scripts/streaming/othello.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/web/app/common/scripts/streaming/othello.ts b/src/web/app/common/scripts/streaming/othello.ts
new file mode 100644
index 0000000000..febc5d498a
--- /dev/null
+++ b/src/web/app/common/scripts/streaming/othello.ts
@@ -0,0 +1,28 @@
+import StreamManager from './stream-manager';
+import Stream from './stream';
+
+export class OthelloStream extends Stream {
+ constructor(me) {
+ super('othello', {
+ i: me.token
+ });
+ }
+}
+
+export class OthelloStreamManager extends StreamManager<OthelloStream> {
+ private me;
+
+ constructor(me) {
+ super();
+
+ this.me = me;
+ }
+
+ public getConnection() {
+ if (this.connection == null) {
+ this.connection = new OthelloStream(this.me);
+ }
+
+ return this.connection;
+ }
+}