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

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



416
417
418
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 416

def group_class
  TimedGroup
end

#publish(name, *args) ⇒ Object



420
421
422
# File 'activesupport/lib/active_support/notifications/fanout.rb', line 420

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