Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

安装 acts-channel client库

通过 cargo 命令安装:

cargo add acts-channel

连接

应用服务通过 ActsChannel 创建并连接到服务。

#![allow(unused)]
fn main() {
use acts_channel::ActsChannel;

let mut client = ActsChannel::new("http://localhost:8080");

// 连接到 acts-server
client.connect().await?;
}