teloxide/examples/shared_state_bot/src/main.rs

38 lines
944 B
Rust
Raw Normal View History

2020-03-04 09:15:23 +01:00
// This bot answers how many messages it received in total on every message.
use std::sync::atomic::{AtomicU64, Ordering};
use lazy_static::lazy_static;
use teloxide::prelude::*;
lazy_static! {
static ref MESSAGES_TOTAL: AtomicU64 = AtomicU64::new(0);
}
#[tokio::main]
async fn main() {
run().await;
}
async fn run() {
teloxide::enable_logging!();
log::info!("Starting shared_state_bot...");
2020-03-04 09:15:23 +01:00
let bot = Bot::from_env();
Dispatcher::new(bot)
.messages_handler(|rx: DispatcherHandlerRx<Message>| {
rx.for_each_concurrent(None, |message| async move {
let previous = MESSAGES_TOTAL.fetch_add(1, Ordering::Relaxed);
message
.answer_str(format!("I received {} messages in total.", previous))
2020-03-04 09:15:23 +01:00
.await
.log_on_error()
.await;
})
})
.dispatch()
.await;
}