提交 60a312d2 编写于 作者: C Cyrus Najmabadi

Docs

上级 7355646b
......@@ -107,6 +107,10 @@ private async Task StartAsync(CancellationToken cancellationToken)
private async Task StartWorkerAsync(CancellationToken cancellationToken)
{
// Set a short batch time so we update VS in a timely manner. We still want to batch things up though as we
// might receive many notifications about files in a project, and it would be better to notify VS of them
// all at once rather than saturating the UI work queue with a lot of work that keeps being processed in
// between everything else that is going on.
_workQueue = new AsyncBatchingWorkQueue<DesignerAttributeData>(
TimeSpan.FromMilliseconds(250),
this.NotifyProjectSystemAsync,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册