Flowdock
method

nonblock=

Importance_0
v1_9_1_378 - Show latest stable - 0 notes - Class: IO
nonblock=(nb) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File ext/io/wait/lib/nonblock.rb, line 7
  def nonblock=(nb)
    f = fcntl(Fcntl::F_GETFL)
    if nb
      f |= File::NONBLOCK
    else
      f &= ~File::NONBLOCK
    end
    fcntl(Fcntl::F_SETFL, f)
  end
Register or log in to add new notes.