This example shows the need of multithreading in the Pyro server.
The client spawns serveral concurrent loops which access the same
remote object. If the Pyro server is single threading, each remote
invocation has to wait for the previous one to complete.
If the Pyro server is multithreading, each remote invocation is
processed simultaneously.
