Server and client connections
When the process P has one ore more references of objects owned by Q:
- There is a server connection on P for requesting
methods calls from P to objects living in Q (class ServerConnection).
- There is a client connection on Q for serving the
methods call coming from P to objects living in Q (class ClientConnection).
- There is a thread running on Q which reads the requests from
the client connection with P, and dispatches them (launched by the
class ClientConnection).
- 3 -