From: nobu@... Date: 2016-01-22T05:44:10+00:00 Subject: [ruby-core:73122] [Ruby trunk - Misc #12013] [Feedback] io/wait: allow to wait on readable and writable Issue #12013 has been updated by Nobuyoshi Nakada. Description updated Status changed from Open to Feedback Assignee set to Nobuyoshi Nakada What about: ~~~ruby mysock.wait(30, to: [:read, :write]) ~~~ or ~~~ruby mysock.wait(30, to: :readwrite) ~~~ ---------------------------------------- Misc #12013: io/wait: allow to wait on readable and writable https://bugs.ruby-lang.org/issues/12013#change-56347 * Author: Tiago Cardoso * Status: Feedback * Priority: Normal * Assignee: Nobuyoshi Nakada ---------------------------------------- If I have a socket and I want to wait for both read and write events, IO.select is my only co-pilot: ~~~ruby IO.select([mysock],[mysock]) ~~~ the beautiful thing about the `#wait_readable` and `#wait_writable` methods is that I can have a friendlier way to compose sockets for other event loops which monkey-patching `IO.select`. One example is celluloid-io, which has its own wrappers around the network sockets classes. But I think there is a limitation when I want to listen for both reads and writes. See both examples below: ~~~ruby IO.select([mysock],[mysock], nil, 30) # as opposed to require 'io/wait' mysock.wait_readable(30) && mysock.wait_writable(30) ~~~ in the second example, I can wait potentially 60 seconds, instead of the 30 from the first example. I'm not sure which API it should be, my main reference is the celluloid io reactor api in this case: ~~~ruby mysock.wait(:r) mysock.wait(:w) mysock.wait(:rw) ~~~ drawback: there is already a wait method, so backwards compatibility would be gone. or would it? Current arity is 0, which means, one could still alias it to `#wait_readable` if no argument is passed. -- https://bugs.ruby-lang.org/ Unsubscribe: