class documentation

Undocumented

Method __init__ No summary
Method __le__ Implement <= operator between two DelayedCall instances.
Method __lt__ Implement < operator between two DelayedCall instances.
Method __repr__ Implement repr() for DelayedCall instances.
Method activate_delay Undocumented
Method active Determine whether this call is still pending
Method cancel Unschedule this call
Method delay Reschedule this call for a later time
Method getTime Return the time at which this call will fire
Method reset Reschedule this call for a different time
Class Variable debug Undocumented
Instance Variable args Undocumented
Instance Variable called Undocumented
Instance Variable cancelled Undocumented
Instance Variable canceller Undocumented
Instance Variable creator Undocumented
Instance Variable delayed_time Undocumented
Instance Variable func Undocumented
Instance Variable kw Undocumented
Instance Variable resetter Undocumented
Instance Variable seconds Undocumented
Instance Variable time Undocumented
Class Variable _repr Undocumented
def __init__(self, time: float, func: Callable[..., Any], args: Sequence[object], kw: Dict[str, object], cancel: Callable[[DelayedCall], None], reset: Callable[[DelayedCall], None], seconds: Callable[[], float] = runtimeSeconds): (source)
Parameters
time:floatSeconds from the epoch at which to call func.
func:Callable[..., Any]The callable to call.
args:Sequence[object]The positional arguments to pass to the callable.
kw:Dict[str, object]The keyword arguments to pass to the callable.
cancel:Callable[[DelayedCall], None]A callable which will be called with this DelayedCall before cancellation.
reset:Callable[[DelayedCall], None]A callable which will be called with this DelayedCall after changing this DelayedCall's scheduled execution time. The callable should adjust any necessary scheduling details to ensure this DelayedCall is invoked at the new appropriate time.
seconds:Callable[[], float]If provided, a no-argument callable which will be used to determine the current time any time that information is needed.
def __le__(self, other: object) -> bool: (source)

Implement <= operator between two DelayedCall instances.

Comparison is based on the time attribute (unadjusted by the delayed time).

def __lt__(self, other: object) -> bool: (source)

Implement < operator between two DelayedCall instances.

Comparison is based on the time attribute (unadjusted by the delayed time).

def __repr__(self) -> str: (source)

Implement repr() for DelayedCall instances.

Returns
strString containing details of the DelayedCall.
def activate_delay(self): (source)

Undocumented

def active(self) -> bool: (source)

Determine whether this call is still pending

Returns
boolTrue if this call has not yet been made or cancelled, False otherwise.
def cancel(self): (source)

Unschedule this call

Raises
AlreadyCancelledRaised if this call has already been unscheduled.
AlreadyCalledRaised if this call has already been made.
def delay(self, secondsLater: float): (source)

Reschedule this call for a later time

Parameters
secondsLater:floatThe number of seconds after the originally scheduled time for which to reschedule this call.
Raises
AlreadyCancelledRaised if this call has been cancelled.
AlreadyCalledRaised if this call has already been made.
def getTime(self) -> float: (source)

Return the time at which this call will fire

Returns
floatThe number of seconds after the epoch at which this call is scheduled to be made.
def reset(self, secondsFromNow: float): (source)

Reschedule this call for a different time

Parameters
secondsFromNow:floatThe number of seconds from the time of the reset call at which this call will be scheduled.
Raises
AlreadyCancelledRaised if this call has been cancelled.
AlreadyCalledRaised if this call has already been made.

Undocumented

Undocumented

Undocumented

cancelled: int = (source)

Undocumented

canceller = (source)

Undocumented

Undocumented

delayed_time: float = (source)

Undocumented

Undocumented

Undocumented

resetter = (source)

Undocumented

Undocumented

Undocumented

Undocumented