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

ApproximateSplitRequest

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

A suggestion by the service to the worker to dynamically split the WorkItem.

interface ApproximateSplitRequest {
fractionConsumed?: number;
fractionOfRemainder?: number;
position?: Position;
}

§Properties

§
fractionConsumed?: number
[src]

A fraction at which to split the work item, from 0.0 (beginning of the input) to 1.0 (end of the input).

§
fractionOfRemainder?: number
[src]

The fraction of the remainder of work to split the work item at, from 0.0 (split at the current position) to 1.0 (end of the input).

§
position?: Position
[src]

A Position at which to split the work item.