rust-irc/examples/tweeter.rs

32 lines
930 B
Rust
Raw Normal View History

2019-08-27 15:05:51 +02:00
use futures::prelude::*;
2015-02-23 03:22:33 +01:00
use irc::client::prelude::*;
2019-08-27 15:05:51 +02:00
use std::time::Duration;
// NOTE: you can find an asynchronous version of this example with `IrcReactor` in `tooter.rs`.
2019-08-27 15:05:51 +02:00
#[tokio::main]
async fn main() -> irc::error::Result<()> {
let config = Config {
2017-06-19 19:46:01 +02:00
nickname: Some("pickles".to_owned()),
server: Some("chat.freenode.net".to_owned()),
channels: vec!["#rust-spam".to_owned()],
2017-06-19 19:59:26 +02:00
..Default::default()
2015-06-22 18:03:57 +02:00
};
2019-08-27 15:05:51 +02:00
let mut client = Client::from_config(config).await?;
client.identify()?;
let mut stream = client.stream()?;
let mut interval = tokio::time::interval(Duration::from_secs(10)).fuse();
loop {
2019-08-27 15:05:51 +02:00
futures::select! {
m = stream.select_next_some() => {
println!("{}", m?);
}
_ = interval.select_next_some() => {
client.send_privmsg("#rust-spam", "TWEET TWEET")?;
}
}
}
}