method

invoke_thread

invoke_thread()
private

No documentation available.

# File lib/drb/extservm.rb, line 62
    def invoke_thread
      Thread.new do
        while true
          name = @queue.pop
          invoke_service_command(name, @@command[name])
        end
      end
    end