Ejemplo n.º 1
0
 public PlugManager(LogExceptionDelegate aLogException, ScanMethodDelegate aScanMethod, QueueDelegate aQueueMethod)
 {
     LogException = aLogException;
     ScanMethod = aScanMethod;
     Queue = aQueueMethod;
 }
Ejemplo n.º 2
0
 public PlugManager(LogExceptionDelegate aLogException, ScanMethodDelegate aScanMethod, QueueDelegate aQueueMethod)
 {
     LogException = aLogException;
     ScanMethod   = aScanMethod;
     Queue        = aQueueMethod;
 }
 void InvokeDequeued(ReactorQueue<QueueDelegate> queue, QueueDelegate item)
 {
     item.Invoke();
 }