class IReactorTime(Interface): (source)
Known implementations: twisted.internet.base.ReactorBase
, twisted.internet.task.Clock
Method | callLater |
Call a function later. |
Method | getDelayedCalls |
Retrieve all currently scheduled delayed calls. |
Method | seconds |
Get the current time in seconds. |
Parameters | |
delay:float | the number of seconds to wait. |
callable:Callable[ | the callable object to call later. |
*args:object | the arguments to call it with. |
**kwargs:object | the keyword arguments to call it with. |
Returns | |
IDelayedCall | An object which provides IDelayedCall and can be used to cancel the scheduled call, by calling its cancel() method. It also may be rescheduled by calling its delay() or reset() methods. |
Returns | |
List[ | A list of IDelayedCall providers representing all currently scheduled calls. This is everything that has been returned by callLater but not yet called or cancelled. |