Part of vmc.contrib.epsilon.hotfixes.delayedcall_seconds View In Hierarchy
Implements interfaces: twisted.internet.interfaces.IDelayedCall
Method | __init__ | Undocumented |
Method | getTime | Return the time at which this call will fire |
Method | cancel | Unschedule this call |
Method | reset | Reschedule this call for a different time |
Method | delay | Reschedule this call for a later time |
Method | activate_delay | Undocumented |
Method | active | Determine whether this call is still pending |
Method | __le__ | Undocumented |
Method | __str__ | Undocumented |
Returns | The number of seconds after the epoch at which this call is scheduled to
be made.
(type: float
) |
Raises | AlreadyCancelled | Raised if this call has already been unscheduled. |
AlreadyCalled | Raised if this call has already been made. |
Parameters | secondsFromNow | The number of seconds from the time of the reset call at
which this call will be scheduled.
(type: float
) |
Raises | AlreadyCancelled | Raised if this call has been cancelled. |
AlreadyCalled | Raised if this call has already been made. |
Parameters | secondsLater | The number of seconds after the originally scheduled time for which to
reschedule this call.
(type: float
) |
Raises | AlreadyCancelled | Raised if this call has been cancelled. |
AlreadyCalled | Raised if this call has already been made. |