Class: ActiveSupport::Notifications::Fanout::Subscribers::Matcher

Inherits:
Object
  • Object
show all
Defined in:
activesupport/lib/active_support/notifications/fanout.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pattern) ⇒ Matcher

Returns a new instance of Matcher.



127
128
129
130
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 127

def initialize(pattern)
  @pattern = pattern
  @exclusions = Set.new
end

Instance Attribute Details

#exclusionsObject (readonly)

Returns the value of attribute exclusions



120
121
122
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 120

def exclusions
  @exclusions
end

#patternObject (readonly)

Returns the value of attribute pattern



120
121
122
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 120

def pattern
  @pattern
end

Class Method Details

.wrap(pattern) ⇒ Object



122
123
124
125
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 122

def self.wrap(pattern)
  return pattern if String === pattern
  new(pattern)
end

Instance Method Details

#===(name) ⇒ Object



136
137
138
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 136

def ===(name)
  pattern === name && !exclusions.include?(name)
end

#unsubscribe!(name) ⇒ Object



132
133
134
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 132

def unsubscribe!(name)
  exclusions << -name if pattern === name
end