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

Install acts-channel client

Install via cargo:

cargo add acts-channel

Connect

Application services create and connect to the service via ActsChannel.

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

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