module Callbacks
Ruby on Rails 8.0.4
Since v7.1.6Action Cable Connection Callbacks
The before_command, after_command, and around_command callbacks are invoked when sending commands to the client, such as when subscribing, unsubscribing, or performing an action.
Example
module ApplicationCable class Connection < ActionCable::Connection::Base identified_by :user around_command :set_current_account private def set_current_account # Now all channels could use Current.account Current.set(account: user.account) { yield } end end end
Namespace
Modules
Includes
Extends
Used by
Included by (1)
Methods (inherited)
From ActiveSupport::Callbacks (1)
From ActiveSupport::Concern (3)
- # class_methods
- # included
- # prepended
From ActiveSupport::DescendantsTracker (3)
- # descendants
- self. descendants
- self. subclasses