Skip to content

Commit

Permalink
update description
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongwencool committed Sep 19, 2019
1 parent 6d0cf0c commit 00f4376
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ ecron

A lightweight/efficient cron-like job scheduling library for Erlang.

Ecron does not poll the system on a minute-by-minute basis like cron does.
Each job is assigned to a single process.
The time until it is to run next is calculated, and the process sleeps for exactly that long.

This implementation prevents a lot of messages from flying around.

It offers:

* Both cron-like scheduling and interval-based scheduling.
Expand Down
4 changes: 2 additions & 2 deletions src/ecron.app.src
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{application, ecron,
[{description, "Crontab Manager"},
[{description, "cron-like job scheduling library"},
{vsn, "0.1.0"},
{registered, [ecron_sup]},
{mod, {ecron_app, []}},
Expand All @@ -26,5 +26,5 @@
]},
{modules, []},
{licenses, ["Apache 2.0"]},
{links, []}
{links, [{"Github", "https://github.com/zhongwencool/ecron"}]}
]}.

0 comments on commit 00f4376

Please sign in to comment.