class EventMachine::EvmaTCPServer

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 = EvmaTCPClient.new descriptor
      sd.is_server = true
      EventMachine::event_callback uuid, ConnectionAccepted, sd.uuid
    }
  rescue Errno::EWOULDBLOCK, Errno::EAGAIN
  end
end