class ActionCable::SubscriptionAdapter::AnyCable

to AnyCable
AnyCable subscription adapter delegates broadcasts

def broadcast(channel, payload)

def broadcast(channel, payload)
  ::AnyCable.broadcast(channel, payload)
end

def initialize(*)

def initialize(*)
end

def shutdown

def shutdown
  # nothing to do
  # we only need this method for development,
  # 'cause code reloading triggers `server.restart` -> `pubsub.shutdown`
end

def subscribe(*)

def subscribe(*)
  raise NotImplementedError, ACTION_CABLE_SERVER_ERROR_MESSAGE
end

def unsubscribe(*)

def unsubscribe(*)
  raise NotImplementedError, ACTION_CABLE_SERVER_ERROR_MESSAGE
end