Thread.pending_interrupt?(error = nil) â true/false
Class Public methods
Returns whether or not the asynchronous queue is empty.
Since ::handle_interrupt can be used to defer asynchronous events. This method can be used to determine if there are any deferred events.
If you find this method returns true, then you may finish
:never
blocks.
For example, the following method processes deferred asynchronous events immediately.
1 2 3 4 5 | def Thread .kick_interrupt_immediately Thread .handle_interrupt( Object => :immediate ) { Thread .pass } end |
If error
is given, then check only for error
type
deferred events.
Usage
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | th = Thread . new { Thread .handle_interrupt(RuntimeError => :on_blocking ){ while true ... # reach safe point to invoke interrupt if Thread .pending_interrupt? Thread .handle_interrupt( Object => :immediate ){} end ... end } } ... th. raise # stop thread |
This example can also be written as the following, which you should use to avoid asynchronous interrupts.
1 2 3 4 5 6 7 8 9 10 11 12 13 | flag = true th = Thread . new { Thread .handle_interrupt(RuntimeError => :on_blocking ){ while true ... # reach safe point to invoke interrupt break if flag == false ... end } } ... flag = false # stop thread |
Please login to continue.