| Class | Rinda::WaitTemplateEntry |
| In: |
lib/rinda/tuplespace.rb
|
| Parent: | TemplateEntry |
| found | [R] |
# File lib/rinda/tuplespace.rb, line 187
187: def initialize(place, ary, expires=nil)
188: super(ary, expires)
189: @place = place
190: @cond = place.new_cond
191: @found = nil
192: end
# File lib/rinda/tuplespace.rb, line 203
203: def read(tuple)
204: @found = tuple
205: signal
206: end