class documentation

class FakeScheduler: (source)

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): (source)

Schedule a unit of work to be done later.

def __init__(self): (source)

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

def pump(self): (source)

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

Undocumented