ObjectServer & Proxy to keep owned Connection instance
This solution employs Rc
internally to implement cheap cloning of Connection
and in turn makes it possible for users to keep Connection
instances in ObjectServer
and Proxy
itself.
The advantage of keeping Rc
internal is that if we ever wanted to make sharing/sending of Connection
possible between multiple threads, it'll be an easy change and not require any API changes.
Fixes #58 (closed).
Edited by Zeeshan Ali Khan