public static IObservableQuery <O> Deduplicate <O>(this IObservableQuery <O> source, Expression <Func <O, O, bool> > compare) { throw new NotImplementedException(); }
public static IAsyncEnumerator <O> ToAsyncEnumerator <O>(this IObservableQuery <O> source) { throw new NotImplementedException(); }
public static IObservableQuery <O> Where <O>(this IObservableQuery <O> source, Expression <Func <O, bool> > predicate) { throw new NotImplementedException(); }
public static IObservableQuery <O2> SelectAsync <O, O2>(this IObservableQuery <O> source, Expression <Func <O, Task <O2> > > selector) { throw new NotImplementedException(); }
public FiltersFluentConfigurator(IObservableQuery <T> list, TFilter target) : base(target) { List = list; }
/// <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); }
public void Inject(IDataService db, IObservableQuery <Unit> units) { _db = db; Units = units; }