public HandlerTaskDesc(AfterLockTask task, SpoolerMessageHandler handler, Printer printer, AfterLockTask previous_task, int attempts) { this.task = task; this.handler = handler; this.printer = printer; this.previous_task = previous_task; hadlockbeforecall = false; attempts = 0; }
public HandlerTaskDesc(AfterLockTask task, SpoolerMessageHandler handler, Printer printer) : this(task, handler, printer, AfterLockTask.None, 0) { }