Class: EnumeratorQueue

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
src/ruby/bin/math_server.rb

Overview

A EnumeratorQueue wraps a Queue to yield the items added to it.

Instance Method Summary collapse

Constructor Details

#initialize(sentinel) ⇒ EnumeratorQueue

Returns a new instance of EnumeratorQueue.



78
79
80
81
# File 'src/ruby/bin/math_server.rb', line 78

def initialize(sentinel)
  @q = Queue.new
  @sentinel = sentinel
end

Instance Method Details

#each_itemObject



83
84
85
86
87
88
89
90
91
# File 'src/ruby/bin/math_server.rb', line 83

def each_item
  return enum_for(:each_item) unless block_given?
  loop do
    r = @q.pop
    break if r.equal?(@sentinel)
    fail r if r.is_a? Exception
    yield r
  end
end