MCPcopy Create free account
hub / github.com/cinience/RedisStudio / DoConnect

Method DoConnect

RedisStudio/ConnInfoUI.cpp:299–313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

297}
298
299void ConnInfoUI::DoConnect()
300{
301 if (m_Thread.isRunning()) return;
302
303 m_pWork.reset(new Base::RunnableAdapter<ConnInfoUI>(*this, &ConnInfoUI::BackgroundWork));
304 try
305 {
306 m_Thread.start(*m_pWork);
307 }
308 catch (std::exception& ex)
309 {
310 /// who care ?
311 (void)(ex);
312 }
313}
314
315void ConnInfoUI::BackgroundWork( void )
316{

Callers

nothing calls this directly

Calls 3

isRunningMethod · 0.80
resetMethod · 0.80
startMethod · 0.80

Tested by

no test coverage detected