StaticcreateCreates a new instance of the Cold object.
StaticcreateCreates a cold observable.
The emitter function which is called when a subscriber is added.
It should return a function that is called when the subscription is unsubscribed,
or return undefined if no cleanup is needed.
StaticcreateCreates a hot observable that emits data as it is received from the given emitter.
The function that receives a callback to emit data. It should return a cleanup function or undefined.
The observer that allows subscribing to and unsubscribing from the emitted data.
StaticfromStaticfromCreates an observer from a BehaviorSubject.
The BehaviorSubject to create the observer from.
The observer created from the BehaviorSubject.
StaticfromStaticfromStaticfromStaticfromStaticfromCreates an observer from the given subject and returns it.
StaticfromCreates a new observer that emits a value from the given data or function.
StaticjoinCreates a join observer that combines the values emitted by multiple Observers into a single Observable.
The type of the value emitted by the first Observer.
The type of the value emitted by the second Observer.
The type of the value emitted by the third Observer.
The type of the value emitted by the fourth Observer.
The type of the value emitted by the fifth Observer.
The type of the value emitted by the sixth Observer.
The type of the value emitted by the seventh Observer.
The type of the value emitted by the eighth Observer.
The type of the value emitted by the ninth Observer.
The type of the value emitted by the tenth Observer.
An array of Observers to join.
Optionaloptions: { buffer?: [A, B?, C?, D?, E?, F?, G?, H?, I?, J?]; race?: boolean }Optional parameters for the join operation, including a buffer and a race flag.
Optionalbuffer?: [A, B?, C?, D?, E?, F?, G?, H?, I?, J?]An array to store the latest emitted values from each Observer. Defaults to an empty array.
Optionalrace?: booleanA boolean flag indicating whether to emit the combined values immediately or wait for all Observers to emit a value. Defaults to false.
An Observer that emits an array of values, each value being the latest emitted value from the corresponding Observer.
StaticmergeMerges multiple observers into a single observer.
The type of observer A.
The type of observer B.
The type of observer C.
The type of observer D.
The type of observer E.
The type of observer F.
The type of observer G.
The type of observer H.
The type of observer I.
The type of observer J.
StaticmulticastCreates a multicast observer.
StaticpipeCreates a pipe that connects an observer to a subject and emits output values based on a given emitter function.
Staticunicast
The Source class provides utility functions for creating and manipulating Observers.