Sha256: fe39e4aa055f93684e860061a672f8ec0dc1c19c72bd39dbe0a1077ce636e48c

Contents?: true

Size: 1.47 KB

Versions: 14

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

require "active_support/callbacks"

module ActionCable
  module Connection
    # = Action Cable \Connection \Callbacks
    #
    # The {before_command}[rdoc-ref:ClassMethods#before_command],
    # {after_command}[rdoc-ref:ClassMethods#after_command], and
    # {around_command}[rdoc-ref:ClassMethods#around_command] callbacks are
    # invoked when sending commands to the client, such as when subscribing,
    # unsubscribing, or performing an action.
    #
    # ==== Example
    #
    #    module ApplicationCable
    #      class Connection < ActionCable::Connection::Base
    #        identified_by :user
    #
    #        around_command :set_current_account
    #
    #        private
    #
    #        def set_current_account
    #          # Now all channels could use Current.account
    #          Current.set(account: user.account) { yield }
    #        end
    #      end
    #    end
    #
    module Callbacks
      extend  ActiveSupport::Concern
      include ActiveSupport::Callbacks

      included do
        define_callbacks :command
      end

      module ClassMethods
        def before_command(*methods, &block)
          set_callback(:command, :before, *methods, &block)
        end

        def after_command(*methods, &block)
          set_callback(:command, :after, *methods, &block)
        end

        def around_command(*methods, &block)
          set_callback(:command, :around, *methods, &block)
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 4 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/actioncable-7.1.3.4/lib/action_cable/connection/callbacks.rb
actioncable-7.1.5.1 lib/action_cable/connection/callbacks.rb
actioncable-7.1.5 lib/action_cable/connection/callbacks.rb
actioncable-7.1.4.2 lib/action_cable/connection/callbacks.rb
actioncable-7.1.4.1 lib/action_cable/connection/callbacks.rb
actioncable-7.1.4 lib/action_cable/connection/callbacks.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actioncable-7.1.3.4/lib/action_cable/connection/callbacks.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/actioncable-7.1.3.4/lib/action_cable/connection/callbacks.rb
actioncable-7.1.3.4 lib/action_cable/connection/callbacks.rb
actioncable-7.1.3.2 lib/action_cable/connection/callbacks.rb
actioncable-7.1.3.1 lib/action_cable/connection/callbacks.rb
actioncable-7.1.3 lib/action_cable/connection/callbacks.rb
actioncable-7.1.2 lib/action_cable/connection/callbacks.rb
actioncable-7.1.1 lib/action_cable/connection/callbacks.rb