pub fn batch_set_status(
queue: &mut QueueFile,
task_ids: &[String],
status: TaskStatus,
now_rfc3339: &str,
note: Option<&str>,
continue_on_error: bool,
) -> Result<BatchOperationResult>Expand description
Batch set status for multiple tasks.
§Arguments
queue- The queue file to modifytask_ids- List of task IDs to updatestatus- The new status to setnow_rfc3339- Current timestamp for updated_atnote- Optional note to append to each taskcontinue_on_error- If true, continue processing on individual failures
§Returns
A BatchOperationResult with details of successes and failures.