Esempio n. 1
0
 get updates(): Observable<State> {
   return this._updates.takeUntil(this._disposed);
 }
Esempio n. 2
0
 /**
  * Emits the exit message of the currently running process, or null on error.
  * Completes when the process finishes.
  */
 observeExitMessage(): Observable<?ProcessExitMessage> {
   return this._exitMessage.takeUntil(this._disposals);
 }