(self, control_connection, *args, **kwargs)
| 3484 | """ |
| 3485 | |
| 3486 | def __init__(self, control_connection, *args, **kwargs): |
| 3487 | _ReconnectionHandler.__init__(self, *args, **kwargs) |
| 3488 | self.control_connection = weakref.proxy(control_connection) |
| 3489 | |
| 3490 | def try_reconnect(self): |
| 3491 | return self.control_connection._reconnect_internal() |