5个不稳定版本
0.3.1 | 2023年8月6日 |
---|---|
0.3.0 | 2023年7月28日 |
0.2.0 | 2023年7月27日 |
0.1.1 | 2023年7月25日 |
0.1.0 | 2023年7月25日 |
#531 in 异步
43 个月下载量
用于 接待
19KB
296 行
可取消的
提供通用可取消工具的Rust库。
此库的目的是提供一个统一的方式来定义由tokio
运行时管理的后台服务。
示例
查看工作示例,请参阅 examples/
文件夹。
use std::{error::Error, net::SocketAddr};
use cancellable::{async_trait, Cancellable, CancellationResult};
use tokio::net::{TcpListener, TcpStream};
struct Listener {
tcp_listener: TcpListener,
}
impl Listener {
async fn new() -> Result<Self, Box<dyn Error>> {
let tcp_listener = TcpListener::bind("127.0.0.1:5000").await?;
Ok(Self { tcp_listener })
}
}
#[async_trait]
impl Cancellable for Listener {
type Result = (TcpStream, SocketAddr);
type Handle = ();
type Error = std::io::Error;
async fn new_handle(&mut self) -> Self::Handle {}
async fn run(&mut self) -> Result<CancellationResult<Self::Result>, Self::Error> {
let (addr, stream) = self.tcp_listener.accept().await?;
Ok(CancellationResult::item((addr, stream)))
}
}
许可证
请参阅 LICENSE.txt 文件。
依赖关系
~2.8–4.5MB
~73K SLoC