| 96 | } |
| 97 | |
| 98 | void RedisInfoUI::DoRefreshWork() |
| 99 | { |
| 100 | m_pWork.reset(new Base::RunnableAdapter<RedisInfoUI>(*this, &RedisInfoUI::BackgroundWork)); |
| 101 | try |
| 102 | { |
| 103 | m_oThread.start(*m_pWork); |
| 104 | } |
| 105 | catch (std::exception& ex) |
| 106 | { |
| 107 | /// who care ? |
| 108 | (void)(ex); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | void RedisInfoUI::RefreshInfo() |
| 113 | { |