class DRb::ExtServManager

def invoke_thread

def invoke_thread
  Thread.new do
    while name = @queue.pop
      invoke_service_command(name, @@command[name])
    end
  end
end