summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/common/scripts')
-rw-r--r--src/web/app/common/scripts/streaming/stream-manager.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/web/app/common/scripts/streaming/stream-manager.ts b/src/web/app/common/scripts/streaming/stream-manager.ts
index 98dbcf9d8d..1383b97828 100644
--- a/src/web/app/common/scripts/streaming/stream-manager.ts
+++ b/src/web/app/common/scripts/streaming/stream-manager.ts
@@ -40,6 +40,9 @@ export default abstract class StreamManager<T extends Connection> extends EventE
*/
public abstract getConnection(): T;
+ /**
+ * 現在接続しているコネクションを取得します
+ */
public borrow() {
return this._connection;
}