Class: ActiveSupport::Notifications::Fanout

Inherits:
Object
  • Object
show all
Includes:
Mutex_m
Defined in:
lib/skylight/vendor/active_support/notifications/fanout.rb

Overview

This is a default queue implementation that ships with Notifications. It just pushes events to all registered log subscribers.

This class is thread safe. All methods are reentrant.

Defined Under Namespace

Modules: Subscribers

Instance Method Summary collapse

Constructor Details

#initializeFanout

Returns a new instance of Fanout.



17
18
19
20
21
# File 'lib/skylight/vendor/active_support/notifications/fanout.rb', line 17

def initialize
  @subscribers = []
  @listeners_for = ThreadSafe::Cache.new
  super
end

Instance Method Details

#finish(name, id, payload) ⇒ Object



43
44
45
# File 'lib/skylight/vendor/active_support/notifications/fanout.rb', line 43

def finish(name, id, payload)
  listeners_for(name).each { |s| s.finish(name, id, payload) }
end

#listeners_for(name) ⇒ Object



51
52
53
54
55
56
57
# File 'lib/skylight/vendor/active_support/notifications/fanout.rb', line 51

def listeners_for(name)
  # this is correctly done double-checked locking (ThreadSafe::Cache's lookups have volatile semantics)
  @listeners_for[name] || synchronize do
    # use synchronisation when accessing @subscribers
    @listeners_for[name] ||= @subscribers.select { |s| s.subscribed_to?(name) }
  end
end

#listening?(name) ⇒ Boolean

Returns:

  • (Boolean)


59
60
61
# File 'lib/skylight/vendor/active_support/notifications/fanout.rb', line 59

def listening?(name)
  listeners_for(name).any?
end

#publish(name, *args) ⇒ Object



47
48
49
# File 'lib/skylight/vendor/active_support/notifications/fanout.rb', line 47

def publish(name, *args)
  listeners_for(name).each { |s| s.publish(name, *args) }
end

#start(name, id, payload) ⇒ Object



39
40
41
# File 'lib/skylight/vendor/active_support/notifications/fanout.rb', line 39

def start(name, id, payload)
  listeners_for(name).each { |s| s.start(name, id, payload) }
end

#subscribe(pattern = nil, block = Proc.new) ⇒ Object



23
24
25
26
27
28
29
30
# File 'lib/skylight/vendor/active_support/notifications/fanout.rb', line 23

def subscribe(pattern = nil, block = Proc.new)
  subscriber = Subscribers.new pattern, block
  synchronize do
    @subscribers << subscriber
    @listeners_for.clear
  end
  subscriber
end

#unsubscribe(subscriber) ⇒ Object



32
33
34
35
36
37
# File 'lib/skylight/vendor/active_support/notifications/fanout.rb', line 32

def unsubscribe(subscriber)
  synchronize do
    @subscribers.reject! { |s| s.matches?(subscriber) }
    @listeners_for.clear
  end
end

#waitObject

This is a sync queue, so there is no waiting.



64
65
# File 'lib/skylight/vendor/active_support/notifications/fanout.rb', line 64

def wait
end