Methods
Instance Public methods
after_command(*methods, &block)
📝 Source code
# File actioncable/lib/action_cable/connection/callbacks.rb, line 45
def after_command(*methods, &block)
set_callback(:command, :after, *methods, &block)
end
🔎 See on GitHub
around_command(*methods, &block)
📝 Source code
# File actioncable/lib/action_cable/connection/callbacks.rb, line 49
def around_command(*methods, &block)
set_callback(:command, :around, *methods, &block)
end
🔎 See on GitHub
before_command(*methods, &block)
📝 Source code
# File actioncable/lib/action_cable/connection/callbacks.rb, line 41
def before_command(*methods, &block)
set_callback(:command, :before, *methods, &block)
end
🔎 See on GitHub