mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
#538 fixed ParallelSocketReactor dtor
This commit is contained in:
@@ -62,10 +62,17 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
~ParallelSocketReactor()
|
~ParallelSocketReactor()
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
this->stop();
|
this->stop();
|
||||||
_thread.join();
|
_thread.join();
|
||||||
}
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
poco_unexpected();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void onIdle()
|
void onIdle()
|
||||||
|
|||||||
Reference in New Issue
Block a user