Class: ActiveSupport::Notifications::Fanout::Subscribers::Timed

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

Overview

:nodoc:

Direct Known Subclasses

MonotonicTimed

Instance Attribute Summary

Attributes inherited from Evented

#delegate, #pattern, #silenceable

Instance Method Summary collapse

Methods inherited from Evented

#initialize, #publish_event, #silenced?, #subscribed_to?, #unsubscribe!

Constructor Details

This class inherits a constructor from ActiveSupport::Notifications::Fanout::Subscribers::Evented

Instance Method Details

#group_classObject



422
423
424
# File 'lib/active_support/notifications/fanout.rb', line 422

def group_class
  TimedGroup
end

#publish(name, *args) ⇒ Object



426
427
428
# File 'lib/active_support/notifications/fanout.rb', line 426

def publish(name, *args)
  @delegate.call name, *args
end