在
Ruby中,Thread#run和
Thread#wakup之间有什么区别?
RDoc指定调度程序不使用Thread#唤醒调用,但这是什么意思?什么时候使用wakeup vs运行的例子?谢谢.
编辑:
我看到Thread#wakup导致线程变得可运行,但是如果直到执行Thread#run才能执行,那么它会有什么用处?
有人可以提供一个醒来有意义的例子吗?好奇的缘故=)
解决方法
这是一个例子来说明它的含义(代码示例从
here):
Thread.wakeup
thread = Thread.new do Thread.stop puts "Inside the thread block" end $thread => #<Thread:0x100394008 sleep>
上述输出表示新创建的线程由于停止命令而处于睡眠状态.
$thread.wakeup => #<Thread:0x100394008 run>
此输出表示该线程不再睡眠,可以运行.
$thread.run Inside the thread block => #<Thread:0x1005d9930 sleep>
现在线程继续执行并打印出字符串.
$thread.run ThreadError: killed thread
Thread.run
thread = Thread.new do Thread.stop puts "Inside the thread block" end $thread => #<Thread:0x100394008 sleep> $thread.run Inside the thread block => #<Thread:0x1005d9930 sleep>
该线程不仅唤醒,而且继续执行并打印出字符串.
$thread.run ThreadError: killed thread