Get the attribute of the RPC server. Args: name: The name of the attribute to get.
(self, name: str)
| 208 | self.register_function(attr, name) |
| 209 | |
| 210 | def get_attr(self, name: str) -> Any: |
| 211 | """ Get the attribute of the RPC server. |
| 212 | |
| 213 | Args: |
| 214 | name: The name of the attribute to get. |
| 215 | """ |
| 216 | return getattr(self, name) |
| 217 | |
| 218 | async def _drain_pending_requests(self) -> None: |
| 219 | """Drain any remaining requests from the socket and send cancellation responses.""" |
no outgoing calls
no test coverage detected