This commit is contained in:
2024-07-04 11:47:27 +02:00
parent 7b517f2fa6
commit df07cf1a29
19 changed files with 409 additions and 383 deletions

View File

@@ -694,10 +694,15 @@ public:
{
cafeConduit_set_by_handle & handle_index=cs.get<by_handle>();
cafeConduit_set_by_handle::iterator it_handle;
it_handle = handle_index.find(handle);
if (it_handle != handle_index.end())
{
return (*it_handle).isConnected();
//cafeMutex.lock();
bool isConnected = (*it_handle).isConnected();
//cafeMutex.unlock();
return isConnected;
}
else
{