Sha256: 13d1e5a7a50efb60123fcd3d499ee248a729c7138b1c980d830d77e5d3869b0e

Contents?: true

Size: 959 Bytes

Versions: 140

Compression:

Stored size: 959 Bytes

Contents

# frozen_string_literal: true

require "active_support/callbacks"

module ActionCable
  module Channel
    module Callbacks
      extend  ActiveSupport::Concern
      include ActiveSupport::Callbacks

      included do
        define_callbacks :subscribe
        define_callbacks :unsubscribe
      end

      module ClassMethods
        def before_subscribe(*methods, &block)
          set_callback(:subscribe, :before, *methods, &block)
        end

        def after_subscribe(*methods, &block)
          set_callback(:subscribe, :after, *methods, &block)
        end
        alias_method :on_subscribe, :after_subscribe

        def before_unsubscribe(*methods, &block)
          set_callback(:unsubscribe, :before, *methods, &block)
        end

        def after_unsubscribe(*methods, &block)
          set_callback(:unsubscribe, :after, *methods, &block)
        end
        alias_method :on_unsubscribe, :after_unsubscribe
      end
    end
  end
end

Version data entries

140 entries across 136 versions & 10 rubygems

Version Path
actioncable-7.0.8.6 lib/action_cable/channel/callbacks.rb
actioncable-6.1.7.10 lib/action_cable/channel/callbacks.rb
actioncable-6.1.7.9 lib/action_cable/channel/callbacks.rb
actioncable-7.0.8.5 lib/action_cable/channel/callbacks.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actioncable-7.0.8.4/lib/action_cable/channel/callbacks.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/actioncable-7.0.5.1/lib/action_cable/channel/callbacks.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/actioncable-7.0.5.1/lib/action_cable/channel/callbacks.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/actioncable-7.0.5.1/lib/action_cable/channel/callbacks.rb
actioncable-7.0.8.4 lib/action_cable/channel/callbacks.rb
actioncable-6.1.7.8 lib/action_cable/channel/callbacks.rb
actioncable-7.0.8.1 lib/action_cable/channel/callbacks.rb
actioncable-6.1.7.7 lib/action_cable/channel/callbacks.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actioncable-7.0.2.3/lib/action_cable/channel/callbacks.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actioncable-6.1.6.1/lib/action_cable/channel/callbacks.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actioncable-7.0.3.1/lib/action_cable/channel/callbacks.rb
actioncable-7.0.8 lib/action_cable/channel/callbacks.rb
actioncable-7.0.7.2 lib/action_cable/channel/callbacks.rb
actioncable-6.1.7.6 lib/action_cable/channel/callbacks.rb
actioncable-7.0.7.1 lib/action_cable/channel/callbacks.rb
actioncable-6.1.7.5 lib/action_cable/channel/callbacks.rb