Example #1
0
 public override IObservable <Unit> Handle(StartCommand command)
 {
     if (applicationManager.DebugMode)
     {
         return(Observable.Create <Unit>(observer => {
             contextScheduler.StartCoroutine(DoCheckKey());
             return Disposable.Empty;
         }));
     }
     return(Observable.Return(Unit.Default));
 }