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

InstructionInput

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

An input of an instruction, as a reference to an output of a producer instruction.

interface InstructionInput {
outputNum?: number;
producerInstructionIndex?: number;
}

§Properties

§
outputNum?: number
[src]

The output index (origin zero) within the producer.

§
producerInstructionIndex?: number
[src]

The index (origin zero) of the parallel instruction that produces the output to be consumed by this input. This index is relative to the list of instructions in this input's instruction's containing MapTask.