# File lib/eventmachine.rb, line 508
508:   def EventMachine::start_unix_domain_server filename, handler=nil, &block
509:     klass = if (handler and handler.is_a?(Class))
510:       handler
511:     else
512:       Class.new( Connection ) {handler and include handler}
513:     end
514: 
515:     s = start_unix_server filename
516:     @acceptors[s] = [klass,block]
517:   end