Class: ActiveSupport::Notifications::Fanout::Subscribers::AllMessages
- Defined in:
- lib/active_support/notifications/fanout.rb
Overview
:nodoc:
Instance Method Summary collapse
- #finish(name, id, payload) ⇒ Object
-
#initialize(delegate) ⇒ AllMessages
constructor
A new instance of AllMessages.
- #publish(name, *args) ⇒ Object
- #start(name, id, payload) ⇒ Object
- #subscribed_to?(name) ⇒ Boolean
- #unsubscribe! ⇒ Object
Constructor Details
#initialize(delegate) ⇒ AllMessages
Returns a new instance of AllMessages.
230 231 232 |
# File 'lib/active_support/notifications/fanout.rb', line 230 def initialize(delegate) @delegate = delegate end |
Instance Method Details
#finish(name, id, payload) ⇒ Object
238 239 240 |
# File 'lib/active_support/notifications/fanout.rb', line 238 def finish(name, id, payload) @delegate.finish name, id, payload end |
#publish(name, *args) ⇒ Object
242 243 244 |
# File 'lib/active_support/notifications/fanout.rb', line 242 def publish(name, *args) @delegate.publish name, *args end |
#start(name, id, payload) ⇒ Object
234 235 236 |
# File 'lib/active_support/notifications/fanout.rb', line 234 def start(name, id, payload) @delegate.start name, id, payload end |
#subscribed_to?(name) ⇒ Boolean
246 247 248 |
# File 'lib/active_support/notifications/fanout.rb', line 246 def subscribed_to?(name) true end |
#unsubscribe! ⇒ Object
250 251 252 |
# File 'lib/active_support/notifications/fanout.rb', line 250 def unsubscribe!(*) false end |