MCPcopy Create free account
hub / github.com/microsoft/SandDance / Subflow

Function Subflow

docs/app/js/sanddance-app.js:117111–117115  ·  view source on GitHub ↗

* Provides a bridge between a parent transform and a target subflow that * consumes only a subset of the tuples that pass through the parent. * @constructor * @param {Pulse} pulse - A pulse to use as the value of this operator. * @param {Transform} parent - The parent transform (typically a Face

(pulse, parent)

Source from the content-addressed store, hash-verified

117109 * @param {Pulse} pulse - A pulse to use as the value of this operator.
117110 * @param {Transform} parent - The parent transform (typically a Facet instance).
117111 */ function Subflow(pulse, parent) {
117112 (0, _vegaDataflow.Operator).call(this, pulse);
117113 this.parent = parent;
117114 this.count = 0;
117115}
117116(0, _vegaUtil.inherits)(Subflow, (0, _vegaDataflow.Operator), {
117117 /**
117118 * Routes pulses from this subflow to a target transform.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected