Skip to content

Latest commit

 

History

History
67 lines (53 loc) · 2.27 KB

README.md

File metadata and controls

67 lines (53 loc) · 2.27 KB

luatimer

Copyright (c) 2013-2018 brinkqiang (brink.qiang@gmail.com)

luatimer License blog Open Source Love GitHub stars GitHub forks

Build status

Linux Mac Windows
lin-badge mac-badge win-badge

env

install cmake

Intro

luatimer

local module = require("luatimer");

local timer = module.timer.new();
local count = 0;
local test = "this is test";

function main_idle()
    print("hello main_idle");
end

timer:settimer(1, 1000, function(id)
    timer:killtimer(id);
    main_idle();
end
)

print(module.gettime())

-- warning: sleepms bind IDEvent=0
timer:sleepms(2000, function()
    print("sleepms 2000 " .. module.gettime());

    timer:settimer(2, 1000, function(id)
        count=count+1;
        print("hello wolrd " .. count);
        if count >= 10 then
            timer:killtimer(id);
            timer:killall();
            module.stop();
        end
    end)
end)

module.run();

Contacts

Thanks