MCPcopy Create free account
hub / github.com/TanStack/db / constructor

Method constructor

packages/db-ivm/src/operators/debug.ts:13–23  ·  view source on GitHub ↗
(
    id: number,
    inputA: DifferenceStreamReader<T>,
    output: DifferenceStreamWriter<T>,
    name: string,
    indent: boolean = false,
  )

Source from the content-addressed store, hash-verified

11 #indent: boolean
12
13 constructor(
14 id: number,
15 inputA: DifferenceStreamReader<T>,
16 output: DifferenceStreamWriter<T>,
17 name: string,
18 indent: boolean = false,
19 ) {
20 super(id, inputA, output)
21 this.#name = name
22 this.#indent = indent
23 }
24
25 run(): void {
26 for (const message of this.inputMessages()) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected