Class: DTAS::PipeNB

Inherits:
Pipe show all
Defined in:
lib/dtas/pipe.rb

Overview

for non-blocking sinks, this avoids extra fcntl(…, F_GETFL) syscalls We don’t need fcntl at all for splice/tee in Linux For non-Linux, we write_nonblock/read_nonblock already call fcntl() behind our backs, so there’s no need to repeat it.

Constant Summary

Constants inherited from Nonblock

Nonblock::EX

Instance Attribute Summary

Attributes inherited from Pipe

#sink

Attributes included from WritableIter

#on_writable, #ready_write

Instance Method Summary collapse

Methods inherited from Pipe

new, #pipe_size, #pipe_size=

Methods included from WritableIter

#ready_write_optimized?, #wait_writable_prepare, #writable_iter, #writable_iter_init

Methods inherited from Nonblock

#read_nonblock, #write_nonblock

Instance Method Details

#nonblock?Boolean

:nodoc:

Returns:

  • (Boolean)


43
44
45
# File 'lib/dtas/pipe.rb', line 43

def nonblock?
  true
end