class documentation

class FakeDelayedCall:

Constructor: FakeDelayedCall(func)

View In Hierarchy

Fake delayed call which lets us simulate the scheduler.

Method __init__ A function to run, later.
Method cancel Don't run my function later.
Instance Variable cancelled Undocumented
Instance Variable func Undocumented
def __init__(self, func):

A function to run, later.

def cancel(self):

Don't run my function later.

cancelled: bool =

Undocumented

func =

Undocumented