callLater (
self,
delay,
callable,
*args,
*kw,
)
Call a function later.
Arguments:
delay: the number of seconds to wait.
callable: the callable object to call later.
*args: the arguments to call it with.
**kw: they keyword arguments to call it with.
Returns:
An ID that can be used to cancel the call, using cancelCallLater.
|