Crates.io | acts-channel |
lib.rs | acts-channel |
version | 0.6.3 |
source | src |
created_at | 2024-02-20 13:45:36.550295 |
updated_at | 2024-11-20 13:42:10.045001 |
description | acts client channel for acts-server |
homepage | https://github.com/yaojianpin/acts-channel |
repository | https://github.com/yaojianpin/acts-channel.git |
max_upload_size | |
id | 1146406 |
size | 85,486 |
provides an acts client channel for workflow engine server acts-server
The crate is called acts-channel and you can depend on it via cargo:
[dependencies]
acts-channel = "*"
If you want to use the git version:
[dependencies]
acts-channel = { git = "https://github.com/yaojianpin/acts-channel.git" }
Before connecting, please download acts-server
and start it
Listening to the message from acts-server
use acts_channel::{ActsChannel, ActsOptions};
let url = format!("http://{hostname}:{port}");
// connect to server
let mut client = ActsChannel::connect(&url).await?;
// subscribe the messages
client
.subscribe(
"client-1",
move |message| {
println!("{message:?}");
},
&ActsOptions::default(),
)
.await;
Executes action to interact with acts-server, such as deploy
, start
, ack
, send
, etc. For more information, please see acts-server
let yml = r"
id: test
name: model test
steps:
- name: step 1
";
let resp = client
.deploy(yml, Some("custom_model_id")).await?;
assert_eq!(resp.data.unwrap(), true);
let mut vars = Vars::new();
vars.set("var1", true);
client
.submit("pid", "tid", vars).await?;
// set some other vars
let vars = Vars::new();
// combine with pid and tid
let options = Vars::new().with("pid", pid).with("tid", tid).extend(&vars);
// name should be one of complete, submit, back, cancel, error, abort, push and remove
let name = "complete";
client
.send::<()>(name, options)
.await
.map_err(|err| err.message().to_string())?;
let resp = client
// id is message id
.ack(id)
.await
.map_err(|err| err.message().to_string())?;