Flowdock
method

shutdown

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: DRb::DRbServer
shutdown() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/drb/drb.rb, line 1488
    def shutdown
      current = Thread.current
      if @protocol.respond_to? :shutdown
        @protocol.shutdown
      else
        [@thread, *@grp.list].each { |thread|
          thread.kill unless thread == current # xxx: Thread#kill
        }
      end
      @thread.join unless @thread == current
    end
Register or log in to add new notes.