aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-01-03 14:43:40 -0500
committerZoffix Znet <cpan@zoffix.com>2016-01-03 14:43:40 -0500
commit9fd5da692c91ce1faceef70344fc900689098d68 (patch)
tree434720abd0a3ba46efffbd255abfc0be8507e890 /README.md
parent0dc32d88908bbbe29d47316281fe66c2529f1afe (diff)
Add $when argument to .respond
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index 694c285..616246d 100644
--- a/README.md
+++ b/README.md
@@ -283,9 +283,10 @@ to the user/channel specified as the first argument.
```perl6
$irc.respond:
:where<#zofbot>
- :what('Hallo how are you?!')
+ :what("Hallo how are you?! It's been 1 hour!")
:how<privmsg>
:who<Zoffix>
+ :when( now + 3600 )
;
```
Generates a response based on the provided arguments, which are as follows:
@@ -326,6 +327,16 @@ valid in any way). If the `where` argument is set to a name of a channel,
then the method will modify the `what` argument, by prepending
`$who, ` to it.
+### `when`
+
+```perl6
+ $irc.respond: :when(now+5) ... # respond in 5 seconds
+ $irc.respond: :when(DateTime.new: :2016year :1month :2day) ...
+```
+**Optional**. Takes a `Dateish` or `Instant` value that specifies when the
+response should be generated. If omited, the response will be generated
+as soon as possible. **By default** is not specified.
+
## `.ssay`
```perl6