• Overview
@angular/core/rxjs-interop

pendingUntilEvent

function

Operator which makes the application unstable until the observable emits, complets, errors, or is unsubscribed.

  
    function pendingUntilEvent<T>(  injector?: Injector | undefined): MonoTypeOperatorFunction<T>;
  
  

pendingUntilEvent

MonoTypeOperatorFunction<T>

Operator which makes the application unstable until the observable emits, complets, errors, or is unsubscribed.

Use this operator in observables whose subscriptions are important for rendering and should be included in SSR serialization.

@paraminjectorInjector | undefined

The Injector to use during creation. If this is not provided, the current injection context will be used instead (via inject).

@returnsMonoTypeOperatorFunction<T>
Jump to details