コード例 #1
0
ファイル: NikonThreading.cs プロジェクト: daleghent/NINA
 internal void AddOrRemoveEvent(Action a)
 {
     if (_context != null)
     {
         _context.Post(new SendOrPostCallback((o) => {
             a.Invoke();
         }), null);
     }
     else
     {
         // Note: We add or remove events on the callback thread, since this is where events
         // are fired. Also, we use 'BeginInvoke' to avoid deadlocks if the user attempts to
         // hook up an event from within another event handler (example: Hook up ImageReady
         // from within DeviceAdded)
         _callback.BeginInvoke(a);
     }
 }
コード例 #2
0
ファイル: NikonThreading.cs プロジェクト: daleghent/NINA
 internal void BeginInvoke(Delegate d, params object[] args)
 {
     _worker.BeginInvoke(d, args);
 }