| 833 | } // namespace |
| 834 | |
| 835 | Future<> SleepABitAsync() { |
| 836 | static std::shared_ptr<ThreadPool> sleep_tp = CreateSleepThreadPool(); |
| 837 | return DeferNotOk(sleep_tp->Submit([] { SleepABit(); })); |
| 838 | } |
| 839 | |
| 840 | /////////////////////////////////////////////////////////////////////////// |
| 841 | // Extension types |
no test coverage detected