| 825 | } // namespace |
| 826 | |
| 827 | Future<> SleepABitAsync() { |
| 828 | static std::shared_ptr<ThreadPool> sleep_tp = CreateSleepThreadPool(); |
| 829 | return DeferNotOk(sleep_tp->Submit([] { SleepABit(); })); |
| 830 | } |
| 831 | |
| 832 | /////////////////////////////////////////////////////////////////////////// |
| 833 | // Extension types |
no test coverage detected