Method: IO#wait_writable
- Defined in:
- lib/masamune/io.rb
#wait_writable(timeout = 0) ⇒ Object
32 33 34 35 |
# File 'lib/masamune/io.rb', line 32 def wait_writable(timeout = 0) _rs, ws = IO.select([], [self], [], timeout) ws && ws[0] end |