Skip to main content
Module

x/proc/mod1.ts>Group

A better way to work with processes in Deno.
Go to Latest
interface Group
implements [Deno.Closer]
Re-export
import { type Group } from "https://deno.land/x/proc@0.21.8/mod1.ts";

A process group.

A process group must be closed to allow it to be garbage collected.

Methods

run<A, B>(
inputHandler: InputHandler<A>,
outputHandler: OutputHandler<B>,
input: A,
options: RunOptions,
): B | Promise<B>

Flat process API.