Class: ActiveSupport::Notifications::Fanout::Subscribers::Evented

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

Overview

:nodoc:

Direct Known Subclasses

EventObject, Timed

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pattern, delegate) ⇒ Evented

Returns a new instance of Evented.



382
383
384
385
386
387
388
# File 'lib/active_support/notifications/fanout.rb', line 382

def initialize(pattern, delegate)
  @pattern = Matcher.wrap(pattern)
  @delegate = delegate
  @silenceable = delegate.respond_to?(:silenced?)
  @can_publish = delegate.respond_to?(:publish)
  @can_publish_event = delegate.respond_to?(:publish_event)
end

Instance Attribute Details

#delegateObject (readonly)

Returns the value of attribute delegate.



380
381
382
# File 'lib/active_support/notifications/fanout.rb', line 380

def delegate
  @delegate
end

#patternObject (readonly)

Returns the value of attribute pattern.



380
381
382
# File 'lib/active_support/notifications/fanout.rb', line 380

def pattern
  @pattern
end

#silenceableObject (readonly)

Returns the value of attribute silenceable.



380
381
382
# File 'lib/active_support/notifications/fanout.rb', line 380

def silenceable
  @silenceable
end

Instance Method Details

#group_classObject



390
391
392
# File 'lib/active_support/notifications/fanout.rb', line 390

def group_class
  EventedGroup
end

#publish(name, *args) ⇒ Object



394
395
396
397
398
# File 'lib/active_support/notifications/fanout.rb', line 394

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

#publish_event(event) ⇒ Object



400
401
402
403
404
405
406
# File 'lib/active_support/notifications/fanout.rb', line 400

def publish_event(event)
  if @can_publish_event
    @delegate.publish_event event
  else
    publish(event.name, event.time, event.end, event.transaction_id, event.payload)
  end
end

#silenced?(name) ⇒ Boolean

Returns:

  • (Boolean)


408
409
410
# File 'lib/active_support/notifications/fanout.rb', line 408

def silenced?(name)
  @silenceable && @delegate.silenced?(name)
end

#subscribed_to?(name) ⇒ Boolean

Returns:

  • (Boolean)


412
413
414
# File 'lib/active_support/notifications/fanout.rb', line 412

def subscribed_to?(name)
  pattern === name
end

#unsubscribe!(name) ⇒ Object



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

def unsubscribe!(name)
  pattern.unsubscribe!(name)
end