Home
last modified time | relevance | path

Searched refs:async_method (Results 1 – 1 of 1) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
Dremote.py527 def async_method(self, *args, **kwargs): function
556 async_method.__name__ = remote.method.__name__
557 async_method = util.positional(2)(async_method)
558 async_method.remote = remote
559 return async_method
561 def __new_sync_method(cls, async_method): argument
580 return async_method(self.async, *args, **kwargs).response
581 sync_method.__name__ = async_method.__name__
582 sync_method.remote = async_method.remote
611 for method_name, async_method in async_methods.items():
[all …]