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

ParDoInstruction

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

An instruction that does a ParDo operation. Takes one main input and zero or more side inputs, and produces zero or more outputs. Runs user code.

interface ParDoInstruction {
multiOutputInfos?: MultiOutputInfo[];
numOutputs?: number;
sideInputs?: SideInputInfo[];
userFn?: {
[key: string]: any;
}
;
}

§Properties

§

The input.

§
multiOutputInfos?: MultiOutputInfo[]
[src]

Information about each of the outputs, if user_fn is a MultiDoFn.

§
numOutputs?: number
[src]

The number of outputs.

§
sideInputs?: SideInputInfo[]
[src]

Zero or more side inputs.

§
userFn?: {
[key: string]: any;
}
[src]

The user function to invoke.