Ejemplo n.º 1
0
 public IObservable <ImmutableList <BranchSettings.BranchGroup> > GetConfiguredBranches()
 {
     return(notifiers.GetAnyNotification().StartWith(Unit.Default)
            .SelectMany(_ => WithAccessor(a => a.GetAllBranchGroups())));
 }
Ejemplo n.º 2
0
 public IObservable <string[]> GetConfiguredBranches()
 {
     return(notifiers.GetAnyNotification().StartWith(Unit.Default)
            .SelectMany(_ => GetConfiguredBranchesOnce()));
 }