Method: ActionCable::Connection::Base#dispatch_websocket_message
- Defined in:
- actioncable/lib/action_cable/connection/base.rb
#dispatch_websocket_message(websocket_message) ⇒ Object
:nodoc:
90 91 92 93 94 95 96 |
# File 'actioncable/lib/action_cable/connection/base.rb', line 90 def () # :nodoc: if websocket.alive? handle_channel_command decode() else logger.error "Ignoring message processed after the WebSocket was closed: #{.inspect})" end end |