public PrintServiceNotificationProvider(IPrintServiceNotify printServiceNotify)
 {
     this.notify             = printServiceNotify;
     this.printJobResetEvent = new ConcurrentDictionary <PrintJobId, AutoResetEvent>();
     this.resultDictionary   = new ConcurrentDictionary <PrintJobId, IPrintResult>();
 }
 public PrintServiceNotificationProvider(IPrintServiceNotify printServiceNotify)
 {
     this.notify = printServiceNotify;
     this.printJobResetEvent = new ConcurrentDictionary<PrintJobId, AutoResetEvent>();
     this.resultDictionary = new ConcurrentDictionary<PrintJobId, IPrintResult>();
 }
 public PrintServerSingleNotificationProvider(IPrintManagerNotificationHandler handler, IPrintServiceNotify notify)
     : base(notify)
 {
     this.handler = handler;
     this.printJobIds = new ConcurrentDictionary<PrintJobId, byte>();
 }
Example #4
0
 public PrintServerSingleNotificationProvider(IPrintManagerNotificationHandler handler, IPrintServiceNotify notify)
     : base(notify)
 {
     this.handler     = handler;
     this.printJobIds = new ConcurrentDictionary <PrintJobId, byte>();
 }