Possible Duplicate:
Python XMLRPC with concurrent requests
I'm writing a python application which will act as xml-rpc server, using SimpleXMLRPCServer class.
Now my question is: what happens if 2 or more clients send a request at the same time? Are they queued? Do I have the guarantee that if two clients call the same or different functions they are executed one after another and not at the same time?