Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public HandlerTaskDesc(AfterLockTask task, SpoolerMessageHandler handler, Printer printer)
     : this(task, handler, printer, AfterLockTask.None, 0)
 {
 }