class method
self.new
Ruby on Rails 7.0.10
Since v3.0.20Signature
self.new()
No documentation comment.
Source
# File activesupport/lib/active_support/notifications/fanout.rb, line 27
def initialize
@string_subscribers = Hash.new { |h, k| h[k] = [] }
@other_subscribers = []
@listeners_for = Concurrent::Map.new
super
end
Defined in activesupport/lib/active_support/notifications/fanout.rb line 27
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Notifications::Fanout