Namespace Chains

Chains use generators as a way of processing data.

To create, From, processing operators are Links. To run: run

Utility

  • addToArray: add values from a source to an array as they are emitted
  • asArray: wait for source to complete, collecting results into an array
  • mergeFlat: combine serveral sources into one, interleaving values
  • asCallback: passes a value to a callback whenever it is emitted
  • asPromise: Treat chain as a promise, yeidling the final result.
  • asValue: Return the most recent value
  • syncToArray: Wait for all sources to produce a value
  • combineLatestToArray, combineLatestToObject: Emit values as array/oject as soon as one source changes

References

Re-exports timestamp