vine icon indicating copy to clipboard operation
vine copied to clipboard

Behavior of then() for a resolved promise?

Open clokep opened this issue 9 years ago • 3 comments

What's the expected behavior for calling then() on a resolved promise? Right now you add callbacks that will never get called.

E.g. using an EagerResult in celery you end up with something like this:

val = 40
result = EagerResult(val)
# Internally result.on_ready is a promise that has already fired, e.g. promise(val) is called.
result.then(callback, errback)
# Neither of these will ever fire.

I'd expect adding a callback to an already resolved promise to call it immediately.

Note that Twisted will immediately run your callbacks if a Deferred already has resolved, so I'm expecting the same behavior here.

(As an aside -- I find it odd you can resolve a promise multiple times...but it doesn't seem to have the same callback chain.)

clokep avatar Feb 01 '17 21:02 clokep

whats your current thoughts on this?

auvipy avatar Nov 10 '21 12:11 auvipy

whats your current thoughts on this?

My thought is that it is confusing that the callbacks never get called, but it is unclear what should happen. This package sadly lacks any documentation of the expected behaviors.

clokep avatar Nov 10 '21 12:11 clokep

some little addition https://github.com/celery/vine/commit/e8813210b8b493a1cea02da94da3fc5f0bedc28e

auvipy avatar Nov 10 '21 13:11 auvipy