class EventMachine::EvmaUNIXServer

def eventable_read

Don't accept more than 10 at a time.
socket and a sockaddr_in which names the peer.
accept_nonblock returns an array consisting of the accepted
--
def eventable_read
  begin
    10.times {
      descriptor,peername = io.accept_nonblock
      sd = StreamObject.new descriptor
      EventMachine::event_callback uuid, ConnectionAccepted, sd.uuid
    }
  rescue Errno::EWOULDBLOCK, Errno::EAGAIN
  end
end