summaryrefslogtreecommitdiffstats
path: root/README.markdown
diff options
context:
space:
mode:
authorEmil Renner Berthing <esmil@mailme.dk>2012-07-31 18:29:52 +0200
committerEmil Renner Berthing <esmil@mailme.dk>2012-07-31 18:47:58 +0200
commit526c253d57b2daed8a122d56a0532dc1e7e83b40 (patch)
tree40931fb575b078caec04fa4ec204861436698914 /README.markdown
parent9db0a1b8d4539fe5f7aa678e0ef8fb634fb48bf7 (diff)
downloadlem-526c253d57b2daed8a122d56a0532dc1e7e83b40.tar.gz
lem-526c253d57b2daed8a122d56a0532dc1e7e83b40.tar.xz
lem-526c253d57b2daed8a122d56a0532dc1e7e83b40.zip
utils: remove timer function
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown14
1 files changed, 0 insertions, 14 deletions
diff --git a/README.markdown b/README.markdown
index a7488a0..e882ce0 100644
--- a/README.markdown
+++ b/README.markdown
@@ -143,20 +143,6 @@ This sets `utils` to a table with the following functions.
Returns `true` on succes and `nil, 'not sleeping'` if no coroutine is
currently sleeping on the object.
-* __utils.timer(seconds, func)__
-
- This method will schedule the function `func` to be run in a new coroutine
- after `seconds` seconds and return a new timer object.
-
- If `seconds` is zero or negative this method shall behave as `utils.spawn()`
- except it will still return a timer object.
-
-* __timer:cancel()__
-
- This method cancels the timer.
- Returns `true` on success and `nil, 'expired'` if the coroutine has already
- been scheduled to run.
-
The Stream Library
------------------