9个版本
使用旧Rust 2015
0.3.0 |
|
---|---|
0.2.6 | 2018年12月21日 |
0.2.4 | 2018年11月21日 |
0.1.1 | 2018年10月10日 |
#437 in #未来
2,603 每月下载量
用于 actix-telegram
220KB
6K SLoC
Actix net
Actix net - 框架用于组合式网络服务(实验性)
文档与社区资源
- API文档(开发)
- 在gitter上聊天
- Cargo包: actix-net
- 最低支持的Rust版本:1.26或更高
示例
fn main() {
let sys = actix::System::new("test");
// 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. actix net start separate
// instances of service pipeline in each worker.
Server::default()
.bind(
// configure service pipeline
"basic", "0.0.0.0:8443",
move || {
let num = num.clone();
let acceptor = acceptor.clone();
// service for converting incoming TcpStream to a SslStream<TcpStream>
(move |stream| {
SslAcceptorExt::accept_async(&acceptor, stream)
.map_err(|e| println!("Openssl error: {}", e))
})
// convert closure to a `NewService`
.into_new_service()
// .and_then() combinator uses other service to convert incoming `Request` to a `Response`
// and then uses that response as an input for next service.
// in this case, on success we use `logger` service
.and_then(logger)
// Next service counts number of connections
.and_then(move |req| {
let num = num.fetch_add(1, Ordering::Relaxed);
println!("processed {:?} connections", num);
future::ok(())
})
}).unwrap()
.start();
sys.run();
}
许可
此项目使用以下许可之一:
- Apache License, Version 2.0 (LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT License (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
您可选择其中之一。
行为准则
actix-net crate的贡献受以下条款的约束:
贡献者协约,维护者actix-net,@fafhrd91,承诺遵守代码行为准则。
依赖
~12-24MB