(self, address: _Address, connection_id: int)
| 979 | __slots__ = ("__connection_id",) |
| 980 | |
| 981 | def __init__(self, address: _Address, connection_id: int) -> None: |
| 982 | super().__init__(address) |
| 983 | self.__connection_id = connection_id |
| 984 | |
| 985 | @property |
| 986 | def connection_id(self) -> int: |