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

Inherits:
Object
  • Object
show all
Defined in:
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.



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

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

Instance Attribute Details

#exclusionsObject (readonly)

Returns the value of attribute exclusions.



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

def exclusions
  @exclusions
end

#patternObject (readonly)

Returns the value of attribute pattern.



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

def pattern
  @pattern
end

Class Method Details

.wrap(pattern) ⇒ Object



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

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

Instance Method Details

#===(name) ⇒ Object



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

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

#unsubscribe!(name) ⇒ Object



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

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