observables - ZeMA-gGmbH/NoPE-JS GitHub Wiki
Author
Martin Karkowski
Email
[email protected] This module contains a default implementation for a INopeObservable.
Please checkout the INopeObservable for an example.
IObservableType<T, AD>: Partial<AD> & { value: T }
The IObservable data contains additional value. This is the data, which will be utilized by the underlying RXJS implementation.
Export
| Name | Type | Description |
|---|---|---|
T |
T |
The datatype of the INopeObservable |
AD |
extends IEventAdditionalData = IEventAdditionalData
|
The additional data of which is utilized by the RXJS Implementation. |
IPartialObserver<T>: NextObserver<T> | ErrorObserver<T> | CompletionObserver<T>
| Name |
|---|
T |
IPipe<T, K>: (scope: { [index: string]: any; }, observable: Observable<T>) => Observable<K>
| Name |
|---|
T |
K |
(scope, observable): Observable<K>
Helper to interact with the underlying RXJS implementation.
| Name | Type |
|---|---|
scope |
Object |
observable |
Observable<T> |
Observable<K>