File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " telegram-bot"
3
- version = " 0.1.1 "
3
+ version = " 0.1.2 "
4
4
authors = [
" Lukas Kalbertodt <[email protected] >" ]
5
5
6
6
description = " A library for creating Telegram bots."
Original file line number Diff line number Diff line change @@ -169,14 +169,19 @@ impl Bot {
169
169
/// the same update twice.
170
170
/// The `timeout` parameter influences how long (in seconds) each poll may
171
171
/// last. Defaults to 30.
172
+ /// The handler gets a mutable reference to the bot since borrowing it
173
+ /// from the outer scope won't work. When the handler returns an `Err`
174
+ /// value the bot will stop listening for updates and `long_poll` will
175
+ /// return the Error. If you want to stop listening you can just return
176
+ /// `Error::UserInterrupt`.
172
177
///
173
178
/// **Note:**
174
179
/// If the bot is restarted, but the last received updates are not yet
175
180
/// confirmed (the last poll was not empty), there will be some duplicate
176
181
/// updates.
177
- pub fn long_poll < H > ( & mut self , timeout : Option < Integer > , handler : H )
182
+ pub fn long_poll < H > ( & mut self , timeout : Option < Integer > , mut handler : H )
178
183
-> Result < ( ) >
179
- where H : Fn ( & mut Bot , Update ) -> Result < ( ) > {
184
+ where H : FnMut ( & mut Bot , Update ) -> Result < ( ) > {
180
185
// Calculate final timeout: Given or default (30s)
181
186
let timeout = timeout. or ( Some ( 30 ) ) ;
182
187
You can’t perform that action at this time.
0 commit comments