Part of twisted.internet View Source
| Author | Jp Calderone | |
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 23 | Class | LoopingCall | Call a function repeatedly. |
| 156 | Class | SchedulerStopped | The operation could not complete because the scheduler was stopped in |
| 182 | Class | Cooperator | Cooperative task scheduler. |
| 303 | Function | coiterate | Cooperatively iterate over the given iterator, dividing runtime between it |
| 313 | Class | Clock | Provide a deterministic, easily-controlled implementation of |
| 383 | Function | deferLater | Call the given function after a certain period of time has passed. |
| 164 | Class | _Timer | Undocumented |
| 176 | Function | _defaultScheduler | Undocumented |
| Parameters | clock | The object which will be used to schedule the delayed call.
(type: IReactorTime
provider
) |
| delay | The number of seconds to wait before calling the function.
(type: float or int
) | |
| callable | The object to call after the delay. | |
| *args | The positional arguments to pass to callable.
| |
| **kw | The keyword arguments to pass to callable.
| |
| Returns | A deferred that fires with the result of the callable when the
specified time has elapsed.
(type: defer.Deferred
) | |