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

MapTask

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

MapTask consists of an ordered set of instructions, each of which describes one particular low-level operation for the worker to perform in order to accomplish the MapTask's WorkItem. Each instruction must appear in the list before any instructions which depends on its output.

interface MapTask {
counterPrefix?: string;
instructions?: ParallelInstruction[];
stageName?: string;
systemName?: string;
}

§Properties

§
counterPrefix?: string
[src]

Counter prefix that can be used to prefix counters. Not currently used in Dataflow.

§
instructions?: ParallelInstruction[]
[src]

The instructions in the MapTask.

§
stageName?: string
[src]

System-defined name of the stage containing this MapTask. Unique across the workflow.

§
systemName?: string
[src]

System-defined name of this MapTask. Unique across the workflow.