UpgradeAdapterRef

From Get docs
< @angular/upgradeAngular/docs/9/api/upgrade/upgradeadapterref


UpgradeAdapterRef

class deprecated

Use UpgradeAdapterRef to control a hybrid AngularJS / Angular application.

Deprecated: Deprecated since v5. Use upgrade/static instead, which also supports Ahead-of-Time compilation.

class UpgradeAdapterRef {
  ng1RootScope: IRootScopeService
  ng1Injector: IInjectorService
  ng2ModuleRef: NgModuleRef<any>
  ng2Injector: Injector
  ready(fn: (upgradeAdapterRef: UpgradeAdapterRef) => void)
  dispose()
}

Properties

Property Description
ng1RootScope: IRootScopeService
ng1Injector: IInjectorService
ng2ModuleRef: NgModuleRef<any>
ng2Injector: Injector

Methods

Register a callback function which is notified upon successful hybrid AngularJS / Angular application has been bootstrapped.

ready(fn: (upgradeAdapterRef: UpgradeAdapterRef) => void)

Parameters
fn (upgradeAdapterRef: UpgradeAdapterRef) => void


The ready callback function is invoked inside the Angular zone, therefore it does not require a call to $apply().
Dispose of running hybrid AngularJS / Angular application.

dispose()

Parameters

There are no parameters.



© 2010–2020 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v9.angular.io/api/upgrade/UpgradeAdapterRef