module NIO

New I/O for Ruby

Constants

ENGINE
VERSION

Public Class Methods

engine() click to toggle source

NIO implementation, one of the following (as a string):

  • select: in pure Ruby using Kernel.select

  • libev: as a C extension using libev

  • java: using Java NIO

# File lib/nio.rb, line 12
def self.engine
  ENGINE
end