rust-irc/examples/multithreaded.rs
2016-01-03 05:39:44 -05:00

22 lines
648 B
Rust

extern crate irc;
use std::default::Default;
use std::thread::spawn;
use irc::client::prelude::*;
fn main() {
let config = Config {
nickname: Some(format!("pickles")),
server: Some(format!("irc.fyrechat.net")),
channels: Some(vec![format!("#vana")]),
.. Default::default()
};
let server = IrcServer::from_config(config).unwrap();
server.identify().unwrap();
let server = server.clone();
let _ = spawn(move || {
for msg in server.iter() {
print!("{}", msg.unwrap().into_string());
}
}).join(); // You might not want to join here for actual multi-threading.
}