Type:
Class
Constants:
RCS_ID : '-$Id: thwait.rb,v 1.3 1998/06/26 03:19:34 keiju Exp keiju $-'

This class watches for termination of multiple threads. Basic functionality (wait until specified threads have terminated) can be accessed through the class method ThreadsWait.all_waits. Finer control can be gained using instance methods.

Example:

1
2
3
4
5
6
ThreadsWait.all_wait(thr1, thr2, ...) do |t|
  STDERR.puts "Thread #{t} has terminated."
end
 
th = ThreadsWait.new(thread1,...)
th.next_wait # next one to be done
finished?
  • References/Ruby on Rails/Ruby/Classes/ThWait

finished?() Instance Public methods Returns true if any thread

2025-01-10 15:47:30
new
  • References/Ruby on Rails/Ruby/Classes/ThWait

new(*threads) Class Public methods Creates a

2025-01-10 15:47:30
all_waits
  • References/Ruby on Rails/Ruby/Classes/ThWait

all_waits(*threads) Class Public methods Waits until all specified threads have

2025-01-10 15:47:30
all_waits 2
  • References/Ruby on Rails/Ruby/Classes/ThWait

all_waits() Instance Public methods Waits until all of the specified threads

2025-01-10 15:47:30
next_wait
  • References/Ruby on Rails/Ruby/Classes/ThWait

next_wait(nonblock = nil) Instance Public methods Waits until any of the specified

2025-01-10 15:47:30
join_nowait
  • References/Ruby on Rails/Ruby/Classes/ThWait

join_nowait(*threads) Instance Public methods Specifies the threads that this

2025-01-10 15:47:30
empty?
  • References/Ruby on Rails/Ruby/Classes/ThWait

empty?() Instance Public methods Returns true if there are no threads

2025-01-10 15:47:30
join
  • References/Ruby on Rails/Ruby/Classes/ThWait

join(*threads) Instance Public methods Waits for specified threads to terminate

2025-01-10 15:47:30