* 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)
| 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. |
nothing calls this directly
no outgoing calls
no test coverage detected