Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DynamicSourceSplit

import type { DynamicSourceSplit } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

When a task splits using WorkItemStatus.dynamic_source_split, this message describes the two parts of the split relative to the description of the current task's input.

interface DynamicSourceSplit {
primary?: DerivedSource;
residual?: DerivedSource;
}

§Properties

§

Primary part (continued to be processed by worker). Specified relative to the previously-current source. Becomes current.

§

Residual part (returned to the pool of work). Specified relative to the previously-current source.