(self: Any, *args: Any, **kwargs: Any)
| 119 | |
| 120 | @functools.wraps(fn) |
| 121 | def wrapper(self: Any, *args: Any, **kwargs: Any) -> Future: |
| 122 | async_future = Future() # type: Future |
| 123 | conc_future = getattr(self, executor).submit(fn, self, *args, **kwargs) |
| 124 | chain_future(conc_future, async_future) |
| 125 | return async_future |
| 126 | |
| 127 | return wrapper |
| 128 |
nothing calls this directly
no test coverage detected