# File lib/cool.io/server.rb, line 69
    def initialize(path, klass = UNIXSocket, *args, &block)
      s = ::UNIXServer === path ? path : ::UNIXServer.new(path)
      super(s, klass, *args, &block)
    end