欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

一个线程知识点, 一个MongoDB的知识点

程序员文章站 2022-07-10 23:10:44
1 2 //WINForm窗体中切换前后台线程执行任务: 3 protected void RunOnUI(Action action) 4 { 5 Invoke(action); 6 } 7 8 protected void RunOnBg(Action action) ... ......
 1        
 2 //WINForm窗体中切换前后台线程执行任务:
 3         protected void RunOnUI(Action action)
 4         {
 5             Invoke(action);
 6         }
 7 
 8         protected void RunOnBg(Action action)
 9         {
10             Task.Factory.StartNew(action);
11         }
12 
13             //MongoDB创建索引
14             if (idx.Count == 1)
15             {
16                 tbPoints.Indexes.CreateOne(Builders<GpsPoint>.IndexKeys.Descending(it => it.Sn));
17                 tms = Convert.ToInt32((DateTime.Now - dtStart).TotalSeconds);
18                 LogHelper.Show($"压缩轨迹 ~~ 创建索引 用时 {tms} 秒");
19             }