Flowdock
method

transmit_subscription_rejection

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: Base
transmit_subscription_rejection() 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 300
        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
Register or log in to add new notes.