Friday, February 19, 2010

Generating Deferreds

twistmatrix python doc

Deferred objects are signals that a function you have called does not yet have the data you want available. When a function returns a Deferred object, your calling function attaches callbacks to it to handle the data when available.

This document addresses the other half of the question: writing functions that return Deferreds, that is, constructing Deferred objects, arranging for them to be returned immediately without blocking until data is available, and firing their callbacks when the data is available.

This document assumes that you are familiar with the asynchronous model used by Twisted, and with using deferreds returned by functions .

1 comment:

  1. http://twistedmatrix.com/documents/current/core/howto/gendefer.html#auto3

    ReplyDelete