Returns an AsynchronousRequest object for the given function.
(function, *args, **kwargs)
| 141 | return "AsynchronousRequest(function='%s')" % self._function.__name__ |
| 142 | |
| 143 | def asynchronous(function, *args, **kwargs): |
| 144 | """ Returns an AsynchronousRequest object for the given function. |
| 145 | """ |
| 146 | return AsynchronousRequest(function, *args, **kwargs) |
| 147 | |
| 148 | send = asynchronous |
| 149 |
no test coverage detected
searching dependent graphs…