コード例 #1
0
ファイル: PlugManager.cs プロジェクト: Orvid/Cosmos
 public PlugManager(LogExceptionDelegate aLogException, ScanMethodDelegate aScanMethod, QueueDelegate aQueueMethod)
 {
     LogException = aLogException;
     ScanMethod = aScanMethod;
     Queue = aQueueMethod;
 }
コード例 #2
0
 public PlugManager(LogExceptionDelegate aLogException, ScanMethodDelegate aScanMethod, QueueDelegate aQueueMethod)
 {
     LogException = aLogException;
     ScanMethod   = aScanMethod;
     Queue        = aQueueMethod;
 }
コード例 #3
0
 void InvokeDequeued(ReactorQueue<QueueDelegate> queue, QueueDelegate item)
 {
     item.Invoke();
 }