Options
All
  • Public
  • Public/Protected
  • All
Menu

Class VectorStage<T>

A PipelineStage which materializes all intermediate results in main memory.

author

Thomas Minier

Type parameters

  • T

Hierarchy

  • VectorStage

Implements

Index

Constructors

Properties

Methods

Constructors

constructor

  • new VectorStage(content: Promise<Array<T>>): VectorStage

Properties

Private _content

_content: Promise<Array<T>>

Methods

forEach

  • forEach(cb: function): void

getContent

  • getContent(): Promise<Array<T>>

subscribe

  • subscribe(onData: function, onError: function, onEnd: function): void
  • Parameters

    • onData: function
        • (value: T): void
        • Parameters

          • value: T

          Returns void

    • onError: function
        • (err: any): void
        • Parameters

          • err: any

          Returns void

    • onEnd: function
        • (): void
        • Returns void

    Returns void

Generated using TypeDoc