以下の行の後にプログラムを待機させたい
frmProgressBarObj = PullMSI.ExtractByMSIName("products.txt", false);
上記のように、メソッドは内部的にStartProcessWithProgress()メソッドを介してスレッドを呼び出しています。 // code logic -2 lineが実行される前に、そのスレッドを完了させたい。同時に、frmProgressBar.UpdateProgress()によって行われたUI更新を停止しないでください。どうすればいいですか?
namespace NS1
{
public partial class frmMain : Form
{
private void button1_Click(object sender, EventArgs e)
{
frmProgressBar frmProgressBarObj = PullMSI.ExtractByMSIName("products.txt", false);
//code logic - 2
MessageBox.Show("This is executing immediately.
I want to wait until above thread is complete");
}
}
public partial class frmProgressBar : Form
{
public void UpdateProgress(String strTextToDisplayOnProgress)
{
progressBar1.BeginInvoke(
new Action(() =>
{
progressBar1.Value++;
lblFileName.Text = strTextToDisplayOnProgress;
if (progressBar1.Value == progressBar1.Maximum)
{
this.Hide();
}
}));
}
public delegate void DelProgress();
public void StartProcessWithProgress(DelProgress delMethodCode, int maxCount)
{
InitializeProgress(maxCount);
Thread backgroundThread = new Thread(new ThreadStart(delMethodCode));
backgroundThread.Start();
}
}
public static class PullMSI
{
public static frmProgressBar ExtractByMSIName(String strProductFilePath, bool reNameMSI)
{
frmProgressBar frmProgressBar = new frmProgressBar();
frmProgressBar.StartProcessWithProgress(() =>
{
//StreamRader sr declaration and other code
while (!sr.EndOfStream)
{
//logic here
frmProgressBar.UpdateProgress("Copying sr.msiname");
}
}, 2);
return frmProgressBar;
}
}
}
以前にこれらのいずれも使用したことがないことに非常に驚いていますが、複雑さを理解して言語を学習することが基本的に重要であるため、C#のスレッドについて読むことをお勧めします。
以下は、目的を達成するための3つの異なる方法です。
1。リセットイベントの使用(さらに読む: https://msdn.Microsoft.com/en-us/library/system.threading.manualreseteventslim(v = vs.110).aspx )。 C#バージョンにManualResetEventSlim
がない場合は、ManualResetEvent
に置き換え、Wait()
をWaitOne()
に変更します
class LockingWithResetEvents
{
private readonly ManualResetEvent _resetEvent = new ManualResetEvent(false);
public void Test()
{
MethodUsingResetEvents();
}
private void MethodUsingResetEvents()
{
ThreadPool.QueueUserWorkItem(_ => DoSomethingLong());
ThreadPool.QueueUserWorkItem(_ => ShowMessageBox());
}
private void DoSomethingLong()
{
Console.WriteLine("Doing somthing.");
Thread.Sleep(1000);
_resetEvent.Set();
}
private void ShowMessageBox()
{
_resetEvent.WaitOne();
Console.WriteLine("Hello world.");
}
}
2)Task Parallel Library(TPL)を使用します。参考資料: https://msdn.Microsoft.com/en-us/library /dd460717(v=vs.110).aspx
class LockingWithTPL
{
public void Test()
{
Task.Factory.StartNew(DoSomethingLong).ContinueWith(result => ShowMessageBox());
}
private void DoSomethingLong()
{
Console.WriteLine("Doing somthing.");
Thread.Sleep(1000);
}
private void ShowMessageBox()
{
Console.WriteLine("Hello world.");
}
}
3)Async/Awaitを使用します。さらに読む:https://msdn.Microsoft.com/en-us/library/hh191443.aspx
class LockingWithAwait
{
public void Test()
{
DoSomething();
}
private async void DoSomething()
{
await Task.Run(() => DoSomethingLong());
ShowMessageBox();
}
private async void DoSomethingLong()
{
Console.WriteLine("Doing somthing.");
Thread.Sleep(10000);
}
private void ShowMessageBox()
{
Console.WriteLine("Hello world.");
}
}
知っておきたいこと:Mutex( https://msdn.Microsoft.com/en-us/library/system.threading.mutex(v = vs.110).aspx )、セマフォ(- https://msdn.Microsoft.com/en-us/library/system.threading.semaphore(v = vs.110).aspx )、ロック( https://msdn.Microsoft .com/en-us/library/c5kehkcz.aspx )、SemaphoreSlim( https://msdn.Microsoft.com/en-us/library/system.threading.semaphoreslim(v = vs.110 ).aspx )、モニター( https://msdn.Microsoft.com/en-us/library/system.threading.monitor(v = vs.110).aspx )およびインターロック( https://msdn.Microsoft.com/en-us/library/system.threading.interlocked(v = vs.110).aspx )。
.NET 4.0(VS2012)以上を使用している場合は、 Task Parallel Library
および async-await
:
private async void button1_Click(object sender, EventArgs e)
{
frmProgressBar frmProgressBarObj = await Task.Run(() =>
PullMSI.ExtractByMSIName("products.txt", false));
MessageBox.Show(string.Format("Returned {0}", frmProgressBarObj.ToString());
}
.NET 4の場合、 Microsoft.Bcl.Async
。