Synchronous remote call with optional RPC parameters.
(self,
timeout: Optional[float] = None,
need_response: bool = True)
| 50 | return client_method(self.method_name, *self.args, **self.kwargs) |
| 51 | |
| 52 | def remote(self, |
| 53 | timeout: Optional[float] = None, |
| 54 | need_response: bool = True) -> Any: |
| 55 | """Synchronous remote call with optional RPC parameters.""" |
| 56 | return self._prepare_and_call(timeout, need_response, "sync", |
| 57 | "_call_sync") |
| 58 | |
| 59 | def remote_async(self, |
| 60 | timeout: Optional[float] = None, |