(self)
| 2509 | return self._ray_method_signatures.keys() |
| 2510 | |
| 2511 | def __repr__(self): |
| 2512 | return ( |
| 2513 | "Actor(" |
| 2514 | f"{self._ray_actor_creation_function_descriptor.class_name}, " |
| 2515 | f"{self._actor_id.hex()})" |
| 2516 | ) |
| 2517 | |
| 2518 | def __hash__(self): |
| 2519 | # Look up directly in __dict__ to avoid __getattr__, which for |