aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/connections.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/action_cable/connections.rb')
-rw-r--r--lib/action_cable/connections.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/action_cable/connections.rb b/lib/action_cable/connections.rb
new file mode 100644
index 0000000000..e68cc6e7a4
--- /dev/null
+++ b/lib/action_cable/connections.rb
@@ -0,0 +1,17 @@
+module ActionCable
+ module Connections
+ class << self
+ def active
+ end
+
+ def where(identification)
+ end
+ end
+
+ def disconnect
+ end
+
+ def reconnect
+ end
+ end
+end