ActionCable::SubscriptionAdapter::Base Ruby on Rails 5.1.2 Class ActionCable::SubscriptionAdapter::Base < Object actioncable/lib/action_cable/subscription_adapter/base.rb Methods B broadcast N new S shutdown, subscribe U unsubscribe Attributes [R] logger [R] server Class Public methods new(server) Link Source: show | on GitHub # File actioncable/lib/action_cable/subscription_adapter/base.rb, line 6 def initialize(server) @server = server @logger = @server.logger end Instance Public methods broadcast(channel, payload) Link Source: show | on GitHub # File actioncable/lib/action_cable/subscription_adapter/base.rb, line 11 def broadcast(channel, payload) raise NotImplementedError end shutdown() Link Source: show | on GitHub # File actioncable/lib/action_cable/subscription_adapter/base.rb, line 23 def shutdown raise NotImplementedError end subscribe(channel, message_callback, success_callback = nil) Link Source: show | on GitHub # File actioncable/lib/action_cable/subscription_adapter/base.rb, line 15 def subscribe(channel, message_callback, success_callback = nil) raise NotImplementedError end unsubscribe(channel, message_callback) Link Source: show | on GitHub # File actioncable/lib/action_cable/subscription_adapter/base.rb, line 19 def unsubscribe(channel, message_callback) raise NotImplementedError end