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

Method DoRefreshValuesWork

RedisStudio/RedisDataUI.cpp:467–481  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

465}
466
467void RedisDataUI::DoRefreshValuesWork()
468{
469 if (m_oThread.isRunning()) return;
470
471 m_pWork.reset(new Base::RunnableAdapter<RedisDataUI>(*this, &RedisDataUI::BackgroundWorkForRefreshValues));
472 try
473 {
474 m_oThread.start(*m_pWork);
475 }
476 catch (std::exception& ex)
477 {
478 /// who care ?
479 (void)(ex);
480 }
481}
482
483std::size_t RedisDataUI::GetMaxPage()
484{

Callers

nothing calls this directly

Calls 3

isRunningMethod · 0.80
resetMethod · 0.80
startMethod · 0.80

Tested by

no test coverage detected