Ability to get size of messages queue of async thread pool

This commit is contained in:
Могилин Виктор
2020-11-13 13:12:32 +03:00
parent 18e3f07f7d
commit e17ee87f38
3 changed files with 12 additions and 0 deletions

View File

@@ -68,6 +68,11 @@ size_t SPDLOG_INLINE thread_pool::overrun_counter()
return q_.overrun_counter();
}
size_t SPDLOG_INLINE thread_pool::queue_size()
{
return q_.size();
}
void SPDLOG_INLINE thread_pool::post_async_msg_(async_msg &&new_msg, async_overflow_policy overflow_policy)
{
if (overflow_policy == async_overflow_policy::block)