Represents a connection with a callback function.
Creates a debounced observer with optional delay.
Creates a delayed observer with optional delay.
Creates a filtered observer that applies a callback function to each value emitted by the source observer and only emits the values for which the callback returns true.
A function called for each value emitted by the source observer. Should return true to include the value in the filtered observer , or false otherwise.
A new observer that only emits values for which the callback returns true.
Applies a callback function to each element of the Data array and flattens the result into a single array.
Applies a callback function to each value in a map and returns an observer for the result.
Asynchronously applies a callback function to each element of the data stream and returns a TObserver
Merges the provided observer with another observer of type T, returning a new observer that emits values
of type Data | T.
Executes a given callback function once and returns a function that can be used to cancel the execution.
Represents a function to reduce the data in an array-like structure.
A function that returns an observer with optional interval.
Represents a function that returns a TObserver object.
Represents a function that splits an array into multiple arrays of a specified length.
An observer that emits an array of arrays where each subarray contains a maximum of 20 elements.
Represents a tap function that takes a callback function to be executed.
InterfacetoRepresents an iterator context.
Converts the given value to a Promise with the specified data type.
Unsubscribe Function
TObserver is an interface that represents an observable object. It provides various methods to transform, filter, merge, and consume data emitted by the observable.