method
connection_gid
v5.1.7 -
Show latest stable
- Class:
ActionCable::Connection::Identification
connection_gid(ids)private
No documentation available.
# File actioncable/lib/action_cable/connection/identification.rb, line 35
def connection_gid(ids)
ids.map do |o|
if o.respond_to? :to_gid_param
o.to_gid_param
else
o.to_s
end
end.sort.join(":")
end