Searched refs:async_method (Results 1 – 1 of 1) sorted by relevance
527 def async_method(self, *args, **kwargs): function556 async_method.__name__ = remote.method.__name__557 async_method = util.positional(2)(async_method)558 async_method.remote = remote559 return async_method561 def __new_sync_method(cls, async_method): argument580 return async_method(self.async, *args, **kwargs).response581 sync_method.__name__ = async_method.__name__582 sync_method.remote = async_method.remote611 for method_name, async_method in async_methods.items():[all …]