(
self,
method: str,
timeout_calculator: TimeoutCalculator,
params: Dict = None,
is_internal: bool = False,
title: str = None,
)
| 87 | ) |
| 88 | |
| 89 | def send_no_reply( |
| 90 | self, |
| 91 | method: str, |
| 92 | timeout_calculator: TimeoutCalculator, |
| 93 | params: Dict = None, |
| 94 | is_internal: bool = False, |
| 95 | title: str = None, |
| 96 | ) -> None: |
| 97 | # No reply messages are used to e.g. __waitInfo__(after). |
| 98 | self._connection.wrap_api_call_sync( |
| 99 | lambda: self._connection._send_message_to_server( |
| 100 | self._object, |
| 101 | method, |
| 102 | _augment_params(params, timeout_calculator), |
| 103 | True, |
| 104 | ), |
| 105 | is_internal, |
| 106 | title, |
| 107 | ) |
| 108 | |
| 109 | async def _inner_send( |
| 110 | self, |
no test coverage detected