すべてのWaitOneとManualResetEventの作業が完了しました(ありがとう!)スレッドからクラスAの関数を実行している最後の問題がありますクラスBの一部である - 再び説明することができます。クラスBのスレッドからクラスAの関数を呼び出す[C#]
クラスA内の関数 "DoIt(obejct param)"を見てください。これは、クラスAによって呼び出される必要があります。クラスBのスレッド(図のように)...これはどのように達成できますか?デリゲートの何らかの形で助けてくれますか?
class A
{
private ManualResetEvent manualResetEvent;
int counter = 0;
public A()
{
manualResetEvent = new ManualResetEvent(false);
B child = new B(manualResetEvent);
if (manualResetEvent.WaitOne(1000, false))
{
... do the work I was waiting on ...
}
... do more work ...
// Call the function DoIt from within A //
DoIt(param)
}
// This is the function that needs to be called from A and thread in B
void DoIt(object param)
{
counter++;
... do something with param with is local to A ...
}
};
Class B
{
private ManualResetEvent manualResetEvent;
public B(ManualResetEvent mre)
{
manualResetEvent = mre;
Thread childThread = new Thread(new ThreadStart(Manage));
childThread.IsBackground = true;
childThread.Name = "NamedPipe Manager";
childThread.Start();
private void Manage()
{
... do some work ...
... call some functions ...
// Calling the function from Class A, obviouslly doesn't work as-is
DoIt(param);
manualResetEvent.Set();
... do more work ...
... call more functions ...
}
}
};
どのようにスレッドセーフな方法でこのタスクを達成することができますか? ご協力いただければ幸いです。 ありがとう、
"this"を渡して代わりにparent.manualResetEventを使用するほうがよいでしょうか?おそらく – Shaitan00
。しかし、あなたが良いデザインに関心を持っているのであれば、ちょっとだけでなく、全体を再評価するべきでしょう。 – DSO