The {Watcher} subclass for events fired when a stream can be read from or written to (which of these is determined by {#type}). Read events are watched via {Queue#watch_stream_for_read}, and write events are watched via {Queue#watch_stream_for_write}.
Note that read and write events for sockets use the {SocketReadWrite} class.
Creates a new read/write Watcher.
@private
# File lib/rb-kqueue/watcher/read_write.rb, line 32 def initialize(queue, fd, type, callback) if fd.is_a?(IO) @io = fd fd = fd.fileno end @fd = fd @type = type super(queue, @fd, type, [], nil, callback) end
Generated with the Darkfish Rdoc Generator 2.