| 422 | } |
| 423 | |
| 424 | void RedisDataUI::DoRefreshDBWork() |
| 425 | { |
| 426 | m_pWork.reset(new Base::RunnableAdapter<RedisDataUI>(*this, &RedisDataUI::BackgroundWorkForRefreshDB)); |
| 427 | try |
| 428 | { |
| 429 | m_oThread.start(*m_pWork); |
| 430 | } |
| 431 | catch (std::exception& ex) |
| 432 | { |
| 433 | (void)(ex); |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | void RedisDataUI::DoPaginateWork() |
| 438 | { |