Get the value of a DRef from a remote worker. It is only used for debugging purposes. Parameters ---------- worker_id : int The id of the worker to be fetched from. Returns ------- value : object The value of the register.
(self, worker_id: int)
| 41 | """ |
| 42 | |
| 43 | def debug_get_from_remote(self, worker_id: int) -> Any: |
| 44 | """Get the value of a DRef from a remote worker. It is only used for debugging purposes. |
| 45 | |
| 46 | Parameters |
| 47 | ---------- |
| 48 | worker_id : int |
| 49 | The id of the worker to be fetched from. |
| 50 | |
| 51 | Returns |
| 52 | ------- |
| 53 | value : object |
| 54 | The value of the register. |
| 55 | """ |
| 56 | return _ffi_api.DRefDebugGetFromRemote(self, worker_id) # type: ignore # pylint: disable=no-member |
| 57 | |
| 58 | def debug_copy_from( |
| 59 | self, |
no outgoing calls