コード例 #1
0
        public void EnqueueAndDispatch(TDisposable item, Action dequeuedCallback, bool canDispatchOnThisThread)
        {
            OnEnqueueItem(item);

            // NOTE: don't need to check IsDisposed here: InputQueue will handle dispose
            inputQueue.EnqueueAndDispatch(item, dequeuedCallback, canDispatchOnThisThread);
        }
コード例 #2
0
 public void CaptureBackgroundException(Exception exception)
 {
     backgroundCloseData.EnqueueAndDispatch(exception, null, true);
 }
コード例 #3
0
 public void EnqueueAndDispatch(TChannel channel)
 {
     channelQueue.EnqueueAndDispatch(channel);
 }