(self, sharedTransport=None, codec=None)
| 25 | """ |
| 26 | |
| 27 | def __init__(self, sharedTransport=None, codec=None): |
| 28 | self._transport = sharedTransport |
| 29 | self._codec = codec |
| 30 | self._pending_clients = {} |
| 31 | self._lock = threading.Lock() |
| 32 | |
| 33 | @property |
| 34 | def shared_transport(self): |