method
delegate_connection_identifiers
v8.0.0 -
Show latest stable
- Class:
ActionCable::Channel::Base
delegate_connection_identifiers()private
No documentation available.
# File actioncable/lib/action_cable/channel/base.rb, line 264
def delegate_connection_identifiers
connection.identifiers.each do |identifier|
define_singleton_method(identifier) do
connection.send(identifier)
end
end
end