Flowdock
method

dispatch_action

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: Base
dispatch_action(action, data) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actioncable/lib/action_cable/channel/base.rb, line 264
        def dispatch_action(action, data)
          logger.info action_signature(action, data)

          if method(action).arity == 1
            public_send action, data
          else
            public_send action
          end
        rescue Exception => exception
          rescue_with_handler(exception) || raise
        end
Register or log in to add new notes.