The remote condition associated with the connection endpoint. See :class:`Condition` for more information.
(self)
| 121 | |
| 122 | @property |
| 123 | def remote_condition(self) -> Optional['Condition']: |
| 124 | """ |
| 125 | The remote condition associated with the connection endpoint. |
| 126 | See :class:`Condition` for more information. |
| 127 | """ |
| 128 | return cond2obj(self._get_remote_cond_impl()) |
| 129 | |
| 130 | # the following must be provided by subclasses |
| 131 | def _get_cond_impl(self): |
nothing calls this directly
no test coverage detected