コード例 #1
0
ファイル: OutboxSweeper.cs プロジェクト: preardon/Brighter
 /// <summary>
 /// Dispatches the oldest un-dispatched messages from the asynchronous outbox in a background thread.
 /// </summary>
 public void SweepAsyncOutbox()
 {
     _commandProcessor.ClearAsyncOutbox(_batchSize, _millisecondsSinceSent, _useBulk);
 }