nope/lib/observables/nopeObservable.injectable.ts

26 lines
617 B
TypeScript
Raw Normal View History

/**
* @author Martin Karkowski
* @email m.karkowski@zema.de
* @create date 2020-11-23 08:06:30
* @modify date 2020-12-02 07:38:10
* @desc [description]
*/
import { injectable } from "inversify";
import { NopeObservable } from "./nopeObservable";
/**
* RsJX based Observable.
*
* Contains additional Functionalities like:
* - property with the current value
* - function to publish values. (wrapper for next)
* - enables performing a subscription with synced call or a immediate call.
*/
@injectable()
export class InjectableNopeObservable<T, S = T, G = T> extends NopeObservable<
T,
S,
G
> {}