Added a multithreaded example, and added comments to examples.

This commit is contained in:
Aaron Weiss 2014-11-29 03:19:14 -05:00
parent 74528c9d4c
commit f5654abd6e
3 changed files with 39 additions and 1 deletions

36
examples/multithreaded.rs Normal file
View file

@ -0,0 +1,36 @@
#![feature(if_let)]
#![feature(slicing_syntax)]
extern crate irc;
use std::collections::HashMap;
use std::sync::Arc;
use irc::data::config::Config;
use irc::server::{IrcServer, Server};
use irc::server::utils::Wrapper;
fn main() {
let config = Config {
owners: vec!("awe".into_string()),
nickname: "pickles".into_string(),
username: "pickles".into_string(),
realname: "pickles".into_string(),
password: "".into_string(),
server: "irc.fyrechat.net".into_string(),
port: 6667,
use_ssl: false,
channels: vec!("#vana".into_string()),
options: HashMap::new(),
};
let irc_server = Arc::new(IrcServer::from_config(config).unwrap());
// The wrapper provides us with methods like send_privmsg(...) and identify(...)
let server = Wrapper::new(&*irc_server);
server.identify().unwrap();
let server = irc_server.clone();
// We won't use a wrapper here because we don't need the added functionality.
spawn(proc() {
for msg in server.iter() {
print!("{}", msg.into_string());
}
});
}

View file

@ -21,6 +21,7 @@ fn main() {
options: HashMap::new(),
};
let irc_server = IrcServer::from_config(config).unwrap();
// The wrapper provides us with methods like send_privmsg(...) and identify(...)
let server = Wrapper::new(&irc_server);
server.identify().unwrap();
for message in server.iter() {

View file

@ -21,6 +21,7 @@ fn main() {
options: HashMap::new(),
};
let irc_server = IrcServer::from_config(config).unwrap();
// The wrapper provides us with methods like send_privmsg(...) and identify(...)
let server = Wrapper::new(&irc_server);
server.identify().unwrap();
for message in server.iter() {