(self, address: _Address, connection_id: int, duration: Optional[float])
| 997 | __slots__ = ("__duration",) |
| 998 | |
| 999 | def __init__(self, address: _Address, connection_id: int, duration: Optional[float]) -> None: |
| 1000 | super().__init__(address, connection_id) |
| 1001 | self.__duration = duration |
| 1002 | |
| 1003 | @property |
| 1004 | def duration(self) -> Optional[float]: |