• Type Parameters

    • R
    • T

    Parameters

    • source: Observable<T>

      RxJS Subject to use for this Observable.

    • mappingFunction: MappingFunction<T, R>

      Method to return the part for this Observable to return.

    • OptionalmemoizationFunction: MemoizationFunction<R>

      Method to Compare if the data has changed. Should return true when data is different.

    Returns Observable<R>

    createObservablePart

    • Creates a RxJS Observable from RxJS Subject.
    public readonly myPart = CreateObservablePart(this._data, (data) => data.myPart);
    
""