class documentation

class FakeScheduler:

Constructor: FakeScheduler()

View In Hierarchy

A fake scheduler for testing against.

Method __call__ Schedule a unit of work to be done later.
Method __init__ Create a fake scheduler with a list of work to do.
Method pump Do all of the work that is currently available to be done.
Instance Variable work Undocumented
def __call__(self, thunk):

Schedule a unit of work to be done later.

def __init__(self):

Create a fake scheduler with a list of work to do.

def pump(self):

Do all of the work that is currently available to be done.

work: list =

Undocumented