How do you set the timeout for blocking operations on a Ruby socket?
|
2
|
|
|
|
|
|
The solution I found which appears to work is to use Timeout::timeout:
|
||
|
|
|
|
The timeout object is a good solution. This is a example of asynchronous I/O (nonblocking in nature and occurs asynchronously to the flow of the application.) IO.select(read_array [, write_array [, error_array [, timeout]]] ) => array or nil Can be used to get the same effect.
|
|||
|
|
|
|
This article details some problems that the Timeout module can experience. This article shows a way of timing out sockets that might be more performant. |
||
|
|
