threads
キュー内のすべての処理がいつ完了したかを調べる方法を見つけようとしています..MessageBox
処理が完了したら、「操作が完了しました」などのメッセージを表示したいと考えています。
これは、スレッドをキューに入れるために使用しているコードです。
Smart.STPStartInfo stpStartInfo = new Smart.STPStartInfo();
stpStartInfo.MaxWorkerThreads = Convert.ToInt32(numericUpDown5.Value);
stpStartInfo.MinWorkerThreads = 2;
_smartThreadPool = new Smart.SmartThreadPool(stpStartInfo);
foreach (string item in urlQueue)
{
_smartThreadPool.QueueWorkItem(
new Amib.Threading.Func<string, int, int, string, int>(checkURLSmart),
item, iia, 5000, kryptonTextBox1.Text);
iia++;
}
すべてのスレッドがいつ作業を完了したかを知る方法はありますか?