go_server_rust_sdk/scheduler/
mod.rs

1//! Scheduler client functionality for interacting with the go-server scheduler
2
3mod client;
4mod retry_client;
5
6pub use client::{Client, ExecuteRequest, ExecuteEncryptedRequest, ResultResponse};
7pub use retry_client::RetryClient;
8
9/// Task status constants
10pub const TASK_STATUS_ERROR: &str = "error";
11pub const TASK_STATUS_DONE: &str = "done";
12pub const TASK_STATUS_PENDING: &str = "pending";
13pub const TASK_STATUS_PROCESSING: &str = "processing";