exception documentation

class DeferTask(Exception):

View In Hierarchy

Special exception class to defer a task.

This class can be raised by BaseWorker.RunTask to defer the execution of a task. Optionally, the priority of the task can be changed.

Method __init__ Initializes this class.
Instance Variable priority Undocumented
def __init__(self, priority=None):

Initializes this class.

Parameters
priority:numberNew task priority (None means no change)
priority =

Undocumented