Class: Async::LimitedQueue

Inherits:
Queue show all
Defined in:
lib/async/queue.rb

Instance Attribute Summary collapse

Attributes inherited from Queue

#items

Instance Method Summary collapse

Methods inherited from Queue

#async, #each, #empty?

Methods inherited from Notification

#signal

Methods inherited from Condition

#empty?, #signal, #wait

Constructor Details

#initialize(limit = 1, **options) ⇒ LimitedQueue

Returns a new instance of LimitedQueue.



71
72
73
74
75
76
77
# File 'lib/async/queue.rb', line 71

def initialize(limit = 1, **options)
	super(**options)
	
	@limit = limit
	
	@full = Notification.new
end

Instance Attribute Details

#limitObject (readonly)

Returns the value of attribute limit.



79
80
81
# File 'lib/async/queue.rb', line 79

def limit
  @limit
end

Instance Method Details

#dequeueObject



94
95
96
97
98
99
100
# File 'lib/async/queue.rb', line 94

def dequeue
	item = super
	
	@full.signal
	
	return item
end

#enqueue(item) ⇒ Object



86
87
88
89
90
91
92
# File 'lib/async/queue.rb', line 86

def enqueue item
	while limited?
		@full.wait
	end
	
	super
end

#limited?Boolean

Returns Whether trying to enqueue an item would block.

Returns:

  • (Boolean)

    Whether trying to enqueue an item would block.



82
83
84
# File 'lib/async/queue.rb', line 82

def limited?
	@items.size >= @limit
end