You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Love this project especially the fact that it is agnostic to the language and only based on a REST API.
Nevertheless, IMO it could be really awesome to have a a rust client around this REST API.
This way we could have a celery-like framework
For example :
#[derive(Serialize, DeSerialize)]
struct Task1Args {
arg1: u8,
}
let taskArgs = Task1Args{ ... }
let job_id = ocypod::send_task(taskArgs)?;
let status: Status = ocypod::get_status(job_id)?;
Thank you :)
The text was updated successfully, but these errors were encountered:
Hello,
Love this project especially the fact that it is agnostic to the language and only based on a REST API.
Nevertheless, IMO it could be really awesome to have a a rust client around this REST API.
This way we could have a celery-like framework
For example :
Thank you :)
The text was updated successfully, but these errors were encountered: