pub fn batch_set_field(
queue: &mut QueueFile,
task_ids: &[String],
key: &str,
value: &str,
now_rfc3339: &str,
continue_on_error: bool,
) -> Result<BatchOperationResult>Expand description
Batch set custom field for multiple tasks.
§Arguments
queue- The queue file to modifytask_ids- List of task IDs to updatekey- The custom field keyvalue- The custom field valuenow_rfc3339- Current timestamp for updated_atcontinue_on_error- If true, continue processing on individual failures
§Returns
A BatchOperationResult with details of successes and failures.