aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/channel/base.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2015-06-28 21:17:16 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2015-06-29 15:14:52 +0200
commit5c4f07d34e82310e2ce9029ddaafb6603435da73 (patch)
treef23f866de9d4d39466841d798c159887e825b31e /lib/action_cable/channel/base.rb
parentc2e2a94306e6b77b0a1dce9b453fbaa04a7f7446 (diff)
downloadrails-5c4f07d34e82310e2ce9029ddaafb6603435da73.tar.gz
rails-5c4f07d34e82310e2ce9029ddaafb6603435da73.tar.bz2
rails-5c4f07d34e82310e2ce9029ddaafb6603435da73.zip
Introduce Streams as the domain language for the pubsub channels Channels redeliver messages from
Diffstat (limited to 'lib/action_cable/channel/base.rb')
-rw-r--r--lib/action_cable/channel/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action_cable/channel/base.rb b/lib/action_cable/channel/base.rb
index 6c55a8ed65..39a5a7e795 100644
--- a/lib/action_cable/channel/base.rb
+++ b/lib/action_cable/channel/base.rb
@@ -2,7 +2,7 @@ module ActionCable
module Channel
class Base
include Callbacks
- include Redis
+ include Streams
on_subscribe :start_periodic_timers
on_unsubscribe :stop_periodic_timers