MCPcopy Create free account
hub / github.com/dtormoen/tsk-tsk / parent_id

Method parent_id

src/task_builder.rs:179–182  ·  view source on GitHub ↗

Sets the parent task ID that this task is chained to. When set, the task will wait for the parent to complete before executing, and will use the parent's completed repository as its starting point.

(mut self, task_id: Option<String>)

Source from the content-addressed store, hash-verified

177 /// When set, the task will wait for the parent to complete before executing,
178 /// and will use the parent's completed repository as its starting point.
179 pub fn parent_id(mut self, task_id: Option<String>) -> Self {
180 self.parent_id = task_id;
181 self
182 }
183
184 /// Sets whether per-container network isolation is enabled.
185 /// When disabled, the container runs on the default Docker network with direct internet access.

Calls

no outgoing calls