1 个稳定版本
1.0.6 | 2020 年 1 月 19 日 |
---|
#833 在 #future
每月下载量 167
在 20 个crate中使用 (直接使用 11 个)
220KB
6K SLoC
Actori net
Actori net - 组合网络服务的框架
文档与社区资源
- 在 Gitter 上聊天
- 最低支持的 Rust 版本:1.39 或更高版本
示例
fn main() -> io::Result<()> {
// load ssl keys
let mut builder = SslAcceptor::mozilla_intermediate(SslMethod::tls()).unwrap();
builder.set_private_key_file("./examples/key.pem", SslFiletype::PEM).unwrap();
builder.set_certificate_chain_file("./examples/cert.pem").unwrap();
let acceptor = builder.build();
let num = Arc::new(AtomicUsize::new(0));
// bind socket address and start workers. By default server uses number of
// available logical cpu as threads count. actori net start separate
// instances of service pipeline in each worker.
Server::build()
.bind(
// configure service pipeline
"basic", "0.0.0.0:8443",
move || {
let num = num.clone();
let acceptor = acceptor.clone();
// construct transformation pipeline
pipeline(
// service for converting incoming TcpStream to a SslStream<TcpStream>
fn_service(move |stream: actori_rt::net::TcpStream| async move {
SslAcceptorExt::accept_async(&acceptor, stream.into_parts().0).await
.map_err(|e| println!("Openssl error: {}", e))
}))
// .and_then() combinator chains result of previos service call to argument
/// for next service calll. in this case, on success we chain
/// ssl stream to the `logger` service.
.and_then(fn_service(logger))
// Next service counts number of connections
.and_then(move |_| {
let num = num.fetch_add(1, Ordering::Relaxed);
println!("got ssl connection {:?}", num);
future::ok(())
})
},
)?
.run()
}
许可证
本项目许可协议为以下之一
- Apache 许可协议 2.0 版,(LICENSE-APACHE 或 http://www.apache.org/licenses/LICENSE-2.0)
- MIT 许可协议 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
由您选择。
行为准则
向 actori-net crate 的贡献按照贡献者公约进行组织,actori-net 的维护者 @fafhrd91 承诺将介入维护该行为准则。
lib.rs
:
Actori 工具 - 各种辅助服务
依赖项
~7MB
~118K SLoC