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

ReportedParallelism

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

Represents the level of parallelism in a WorkItem's input, reported by the worker.

interface ReportedParallelism {
isInfinite?: boolean;
value?: number;
}

§Properties

§
isInfinite?: boolean
[src]

Specifies whether the parallelism is infinite. If true, "value" is ignored. Infinite parallelism means the service will assume that the work item can always be split into more non-empty work items by dynamic splitting. This is a work-around for lack of support for infinity by the current JSON-based Java RPC stack.

§
value?: number
[src]

Specifies the level of parallelism in case it is finite.