Deferreds are a great way to do asynchronous processing in Twisted. However, they, like the name implies, are for deferred computations, which only run and terminate once, firing the callbacks once. What if I have a repeated computation, like a button being clicked? Is there any Deferred-like object that can fire repeatedly, calling all callbacks attached to it whenever it is fired?
Deferred s are a great way to do asynchronous processing in Twisted. However, they,
Share
I’ve set this up for now. For my limited use case it does what I want.
Someone let me know if this is terrible.