Adding in redis storage

This commit is contained in:
Kinesin Data Technologies Incorporated
2022-10-04 15:13:24 -03:00
parent fb1b6bc807
commit 08fcab41d3
6 changed files with 123 additions and 36 deletions
+3
View File
@@ -16,9 +16,12 @@ pub enum ExecutorMessage {
/// Errors
/// Will return `Err` if the tasks are invalid, according to the executor
ExecuteTask {
task_name: String,
interval: Interval,
details: serde_json::Value,
varmap: VarMap,
output_options: TaskOutputOptions,
storage: mpsc::UnboundedSender<StorageMessage>,
response: oneshot::Sender<bool>,
kill: oneshot::Receiver<()>,
},