cr0hn / aiotasks

A Celery like task manager that distributes Asyncio coroutines
Other
439 stars 37 forks source link

Is it possible to get task id? #7

Open polosatyi opened 7 years ago

polosatyi commented 7 years ago

Hi, thank you very much for the project! I have a question. It's working with celery: task_id = celery.send_task('task_name') Celery send_task returns id and I can use it in other place to get result. For example: result = celery.AsyncResult(task_id) I tried with aiotasks, but was not successful. task_id = await send_task("task_name") Aiotasks send_task returns 1 always. And I don't know how to get a result by task_id.

cr0hn commented 6 years ago

Hi. Not currently. The project is still in a very early state