# File lib_core/rucy/server.rb, line 170
    def close
      @accept_lock.synchronize{
        if (@accept_state == :open) then
          @accept_state = :stop
          @accept_thread.raise(ServerStopException, 'stop server')
        end
      }

      nil
    end