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

Methods inherited from Notification

#signal

Methods inherited from Condition

#empty?, #signal, #wait

Constructor Details

#initialize(limit = 1) ⇒ LimitedQueue

Returns a new instance of LimitedQueue.



60
61
62
63
64
65
# File 'lib/async/queue.rb', line 60

def initialize(limit = 1)
	super()
	
	@limit = limit
	@full = Async::Queue.new
end

Instance Attribute Details

#limitObject (readonly)

Returns the value of attribute limit.



67
68
69
# File 'lib/async/queue.rb', line 67

def limit
  @limit
end

Instance Method Details

#dequeueObject



82
83
84
85
86
87
88
# File 'lib/async/queue.rb', line 82

def dequeue
	item = super
	
	@full.enqueue(nil) unless @full.empty?
	
	return item
end

#enqueue(item) ⇒ Object



74
75
76
77
78
79
80
# File 'lib/async/queue.rb', line 74

def enqueue item
	if limited?
		@full.dequeue
	end
	
	super
end

#limited?Boolean

Returns Whether trying to enqueue an item would block.

Returns:

  • (Boolean)

    Whether trying to enqueue an item would block.



70
71
72
# File 'lib/async/queue.rb', line 70

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