Merge branch 'master' of github.com:kikito/cron.lua

This commit is contained in:
Enrique García Cota 2011-05-04 00:39:07 +02:00
commit 983b4a8806
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ are permitted provided that the following conditions are met:
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of MiddleClass nor the names of its contributors
3. Neither the name of cron.lua nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.

View File

@ -6,7 +6,7 @@ h1. Examples of use
* @cron.after(time, callback)@ will execute callback after the given amount of time units. Returns an identifier (@id@)
* @cron.every(time, callback)@ will repeat the same action periodically. Returns an identifier (@id@)
* @cron.cancel(id)@ will stop a timed event from happening. It will stop a timed event from happening, or stop a periodic action.
* @cron.cancel(id)@ will stop a timed action from happening, and will interrupt the periodical execution of a periodic action.
* @cron.reset()@ removes all timed and periodic actions, and resets the time passed back to 0.
* @cron.update(dt)@ is needed to be executed on the main program loop. @dt@ is the amount of time that has passed since the last iteration. When @cron.update@ is executed, cron will check the list of pending actions and execute them if needed.