# ktimer **Repository Path**: fyql/ktimer ## Basic Information - **Project Name**: ktimer - **Description**: Simple min heap timer - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-04 - **Last Updated**: 2026-03-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # KTimer simple useable heap timer . ## Samples ```cpp #include "ktimer.h" ktimer::KTimer myTimer ; //default ktimer::KTimer<> myTimer ; myTimer.start_timer(3, []() { std::cout << "handle timeout 333 " << std::time(0) << std::endl; return true; //don't forget to return, false will stop the timer }); myTimer.start() ; //start the loop ```