method
transmit_subscription_rejection
v5.2.3 -
Show latest stable
- Class:
ActionCable::Channel::Base
transmit_subscription_rejection()private
No documentation available.
# File actioncable/lib/action_cable/channel/base.rb, line 296
def transmit_subscription_rejection
logger.info "#{self.class.name} is transmitting the subscription rejection"
ActiveSupport::Notifications.instrument("transmit_subscription_rejection.action_cable", channel_class: self.class.name) do
connection.transmit identifier: @identifier, type: ActionCable::INTERNAL[:message_types][:rejection]
end
end