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

Method DoRefreshKeysWork

RedisStudio/RedisDataUI.cpp:451–465  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

449}
450
451void RedisDataUI::DoRefreshKeysWork()
452{
453 if (m_oThread.isRunning()) return;
454
455 m_pWork.reset(new Base::RunnableAdapter<RedisDataUI>(*this, &RedisDataUI::BackgroundWorkForRefreshKeys));
456 try
457 {
458 m_oThread.start(*m_pWork);
459 }
460 catch (std::exception& ex)
461 {
462 /// who care ?
463 (void)(ex);
464 }
465}
466
467void RedisDataUI::DoRefreshValuesWork()
468{

Callers

nothing calls this directly

Calls 3

isRunningMethod · 0.80
resetMethod · 0.80
startMethod · 0.80

Tested by

no test coverage detected