pocoproject / poco

The POCO C++ Libraries are powerful cross-platform C++ libraries for building network- and internet-based applications that run on desktop, server, mobile, IoT, and embedded systems.
https://pocoproject.org
Other
8.05k stars 2.11k forks source link

Add Poco::Util::Timer::idle() method to check if timer has any tasks scheduled #4488

Closed obiltschnig closed 3 months ago

obiltschnig commented 3 months ago
inline bool Timer::idle() const
{
    return _queue.empty();
}