Internal class implementing watchers used by Rev::IO
Configure IOWatcher event callbacks to call the method passed to initialize
# File lib/rev/io.rb, line 163 def on_readable; @rev_io.__send__(:on_readable); end
# File lib/rev/io.rb, line 164 def on_writable; @rev_io.__send__(:on_writable); end
# File lib/rev/io.rb, line 157 def initialize(ruby_io, rev_io, flags) @rev_io = rev_io super(ruby_io, flags) end