Example #1
0
 public static IObservableQuery <O> Deduplicate <O>(this IObservableQuery <O> source, Expression <Func <O, O, bool> > compare)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public static IAsyncEnumerator <O> ToAsyncEnumerator <O>(this IObservableQuery <O> source)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public static IObservableQuery <O> Where <O>(this IObservableQuery <O> source, Expression <Func <O, bool> > predicate)
 {
     throw new NotImplementedException();
 }
Example #4
0
 public static IObservableQuery <O2> SelectAsync <O, O2>(this IObservableQuery <O> source, Expression <Func <O, Task <O2> > > selector)
 {
     throw new NotImplementedException();
 }
Example #5
0
 public FiltersFluentConfigurator(IObservableQuery <T> list, TFilter target) : base(target)
 {
     List = list;
 }
Example #6
0
        /// <summary>
        /// Syncs the filter and continuation operations which cause the query to reevaluate,
        /// such that both querys will update at the same time.
        ///
        /// Subscribing to the result will cause a subscription to both to occour. Disposing the
        /// subscription will dispose both subscriptions simulatiously.
        /// </summary>
        /// <param name="another"></param>
        /// <returns></returns>
        public IObservableQuery <T, TFilter> SyncWith(IObservableQuery <T, TFilter> another)
        {
            _syncList.Add(another.FilterWith(Filter).LimitWith(Continuation).Publish().RefCount());

            return(this);
        }
Example #7
0
 public void Inject(IDataService db, IObservableQuery <Unit> units)
 {
     _db   = db;
     Units = units;
 }