This repository has been archived by the owner on Nov 17, 2018. It is now read-only.
Add callbacks for sent task ack, sent task and reshape API as retrieving result from AsyncResult.get() (fix #38) #43
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It's kind of large commit, since the small commits are hard to resolve merge conflicts while creating this PR.
Give user 3 options to listen for callbacks for async send task operations
task.apply_async()
to get theAsyncResult
first, thenAsyncResult.get()
to get actual task result in tornado asynchronous fashionUsage
Calling Celery tasks(has return value) from Tornado RequestHandler: ::
with generator-based interface: ::
Calling Celery tasks(no return value) from Tornado RequestHandler: ::
with generator-based interface: ::
See updated README.rst for api usage details.
Functional quality