UNIX server class. Listens on the specified UNIX domain socket and creates
new connection objects of the given class. Optionally, it can also take any
existing core UNIXServer object as
path
and create a Rev::UNIXServer out of it.
# File lib/rev/server.rb, line 69 def initialize(path, klass = UNIXSocket, *args, &block) s = ::UNIXServer === path ? path : ::UNIXServer.new(path) super(s, klass, *args, &block) end