Method
registerForAppStarted
(subscriber: (notification: f.AppEvent) => void)
Source from the content-addressed store, hash-verified
| 126 | } |
| 127 | |
| 128 | public registerForAppStarted(subscriber: (notification: f.AppEvent) => void): IAmDisposable { |
| 129 | return this.subscribe(this.appStartedSubscriptions, subscriber); |
| 130 | } |
| 131 | |
| 132 | public registerForAppStop(subscriber: (notification: f.AppEvent) => void): IAmDisposable { |
| 133 | return this.subscribe(this.appStopSubscriptions, subscriber); |
Tested by
no test coverage detected