ecrontab

Travis-CI:: Build Status

Overview

crontab for erlang

Feature

Usage

ecrontab:start().
ecrontab:add_worker(worker_name).
ecrontab:add(worker_name, {'*','*','*','*','*'}, fun() -> io:format("every minute hello!~n") end).
ecrontab:add(undefined, {'*','*','*','*','*','*',5}, fun() -> io:format("every second 5 hello!~n") end).
$cat test/ecrontab_parse_test.erl