Beispiel #1
0
        /// <summary>
        /// Joins together the results from several patterns.
        /// </summary>
        /// <typeparam name="TResult">The type of the elements in the result sequence, obtained from the specified patterns.</typeparam>
        /// <param name="provider">Query provider used to construct the IQbservable&lt;T&gt; data source.</param>
        /// <param name="plans">A series of plans created by use of the Then operator on patterns.</param>
        /// <returns>An observable sequence with the results from matching several patterns.</returns>
        /// <exception cref="ArgumentNullException"><paramref name="provider"/> or <paramref name="plans"/> is null.</exception>
        public static IQbservable <TResult> When <TResult>(this IQbservableProvider provider, params QueryablePlan <TResult>[] plans)
        {
            if (provider == null)
            {
                throw new ArgumentNullException(nameof(provider));
            }
            if (plans == null)
            {
                throw new ArgumentNullException(nameof(plans));
            }

            return(provider.CreateQuery <TResult>(
                       Expression.Call(
                           null,
#if CRIPPLED_REFLECTION
                           InfoOf(() => Qbservable.When <TResult>(default(IQbservableProvider), default(QueryablePlan <TResult>[]))),
#else
                           ((MethodInfo)MethodInfo.GetCurrentMethod()).MakeGenericMethod(typeof(TResult)),
#endif
                           Expression.Constant(provider, typeof(IQbservableProvider)),
                           Expression.NewArrayInit(
                               typeof(QueryablePlan <TResult>),
                               plans.Select(p => p.Expression)
                               )
                           )
                       ));
        }
Beispiel #2
0
        /// <summary>
        /// Converts an enumerable sequence to an observable sequence.
        /// </summary>
        /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
        /// <param name="source">Enumerable sequence to convert to an observable sequence.</param>
        /// <returns>The observable sequence whose elements are pulled from the given enumerable sequence.</returns>
        /// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
        /// <remarks>This operator requires the source's <see cref="IQueryProvider"/> object (see <see cref="IQueryable.Provider"/>) to implement <see cref="IQbservableProvider"/>.</remarks>
        public static IQbservable <TSource> ToQbservable <TSource>(this IQueryable <TSource> source)
        {
            if (source == null)
            {
                throw new ArgumentNullException(nameof(source));
            }

            return(((IQbservableProvider)source.Provider).CreateQuery <TSource>(
                       Expression.Call(
                           null,
#if CRIPPLED_REFLECTION
                           InfoOf(() => Qbservable.ToQbservable <TSource>(default(IQueryable <TSource>))),
#else
                           ((MethodInfo)MethodInfo.GetCurrentMethod()).MakeGenericMethod(typeof(TSource)),
#endif
                           source.Expression
                           )
                       ));
        }
Beispiel #3
0
        /// <summary>
        /// Matches when the observable sequence has an available element and projects the element by invoking the selector function.
        /// </summary>
        /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
        /// <typeparam name="TResult">The type of the elements in the result sequence, returned by the selector function.</typeparam>
        /// <param name="source">Observable sequence to apply the selector on.</param>
        /// <param name="selector">Selector that will be invoked for elements in the source sequence.</param>
        /// <returns>Plan that produces the projected results, to be fed (with other plans) to the When operator.</returns>
        /// <exception cref="ArgumentNullException"><paramref name="source"/> or <paramref name="selector"/> is null.</exception>
        public static QueryablePlan <TResult> Then <TSource, TResult>(this IQbservable <TSource> source, Expression <Func <TSource, TResult> > selector)
        {
            if (source == null)
            {
                throw new ArgumentNullException(nameof(source));
            }
            if (selector == null)
            {
                throw new ArgumentNullException(nameof(selector));
            }

            return(new QueryablePlan <TResult>(
                       Expression.Call(
                           null,
#if CRIPPLED_REFLECTION
                           InfoOf(() => Qbservable.Then <TSource, TResult>(default(IQbservable <TSource>), default(Expression <Func <TSource, TResult> >))),
#else
                           ((MethodInfo)MethodInfo.GetCurrentMethod()).MakeGenericMethod(typeof(TSource), typeof(TResult)),
#endif
                           source.Expression,
                           selector
                           )
                       ));
        }
Beispiel #4
0
        /* NOTE: Keep XML docs consistent with the corresponding Observable methods (modulo the IQbservableProvider parameters of course). */

        /// <summary>
        /// Creates a pattern that matches when both observable sequences have an available element.
        /// </summary>
        /// <typeparam name="TLeft">The type of the elements in the left sequence.</typeparam>
        /// <typeparam name="TRight">The type of the elements in the right sequence.</typeparam>
        /// <param name="left">Observable sequence to match with the right sequence.</param>
        /// <param name="right">Observable sequence to match with the left sequence.</param>
        /// <returns>Pattern object that matches when both observable sequences have an available element.</returns>
        /// <exception cref="ArgumentNullException"><paramref name="left"/> or <paramref name="right"/> is null.</exception>
        public static QueryablePattern <TLeft, TRight> And <TLeft, TRight>(this IQbservable <TLeft> left, IObservable <TRight> right)
        {
            if (left == null)
            {
                throw new ArgumentNullException(nameof(left));
            }
            if (right == null)
            {
                throw new ArgumentNullException(nameof(right));
            }

            return(new QueryablePattern <TLeft, TRight>(
                       Expression.Call(
                           null,
#if CRIPPLED_REFLECTION
                           InfoOf(() => Qbservable.And <TLeft, TRight>(default(IQbservable <TLeft>), default(IObservable <TRight>))),
#else
                           ((MethodInfo)MethodInfo.GetCurrentMethod()).MakeGenericMethod(typeof(TLeft), typeof(TRight)),
#endif
                           left.Expression,
                           GetSourceExpression(right)
                           )
                       ));
        }
Beispiel #5
0
        /// <summary>
        /// Joins together the results from several patterns.
        /// </summary>
        /// <typeparam name="TResult">The type of the elements in the result sequence, obtained from the specified patterns.</typeparam>
        /// <param name="provider">Query provider used to construct the IQbservable&lt;T&gt; data source.</param>
        /// <param name="plans">A series of plans created by use of the Then operator on patterns.</param>
        /// <returns>An observable sequence with the results form matching several patterns.</returns>
        /// <exception cref="ArgumentNullException"><paramref name="provider"/> or <paramref name="plans"/> is null.</exception>
        public static IQbservable <TResult> When <TResult>(this IQbservableProvider provider, IEnumerable <QueryablePlan <TResult> > plans)
        {
            if (provider == null)
            {
                throw new ArgumentNullException("provider");
            }
            if (plans == null)
            {
                throw new ArgumentNullException("plans");
            }

            return(provider.CreateQuery <TResult>(
                       Expression.Call(
                           null,
#if CRIPPLED_REFLECTION
                           InfoOf(() => Qbservable.When <TResult>(default(IQbservableProvider), default(IEnumerable <QueryablePlan <TResult> >))),
#else
                           ((MethodInfo)MethodInfo.GetCurrentMethod()).MakeGenericMethod(typeof(TResult)),
#endif
                           Expression.Constant(provider, typeof(IQbservableProvider)),
                           Expression.Constant(plans, typeof(IEnumerable <QueryablePlan <TResult> >))
                           )
                       ));
        }
 /// <summary>
 /// Projects each element of an observable sequence to an observable sequence by incorporating the element's index, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence.
 /// Synonym for the method 'SelectMany'
 /// </summary>
 /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
 /// <typeparam name="TCollection">The type of the elements in the projected intermediate sequences.</typeparam>
 /// <typeparam name="TResult">The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements.</typeparam>
 /// <param name="source">An observable sequence of elements to project.</param>
 /// <param name="collectionSelector">A transform function to apply to each element; the second parameter of the function represents the index of the source element.</param>
 /// <param name="resultSelector">A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element and the fourth parameter represents the index of the intermediate element.</param>
 /// <returns>An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element.</returns>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="source" /> or <paramref name="collectionSelector" /> or <paramref name="resultSelector" /> is null.</exception>
 public static IQbservable <TResult> FlatMap <TSource, TCollection, TResult>(this IQbservable <TSource> source, Expression <Func <TSource, int, IObservable <TCollection> > > collectionSelector, Expression <Func <TSource, int, TCollection, int, TResult> > resultSelector)
 {
     return(Qbservable.SelectMany <TSource, TCollection, TResult>(source, collectionSelector, resultSelector));
 }
 /// <summary>
 /// Projects each element of an observable sequence into a new form by incorporating the element's index. Synonym for the method 'Select'
 /// </summary>
 /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
 /// <typeparam name="TResult">The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence.</typeparam>
 /// <param name="source">A sequence of elements to invoke a transform function on.</param>
 /// <param name="selector">A transform function to apply to each source element; the second parameter of the function represents the index of the source element.</param>
 /// <returns>An observable sequence whose elements are the result of invoking the transform function on each element of source.</returns>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
 public static IQbservable <TResult> Map <TSource, TResult>(this IQbservable <TSource> source, Expression <Func <TSource, int, TResult> > selector)
 {
     return(Qbservable.Select <TSource, TResult>(source, selector));
 }
 /// <summary>
 /// Filters the elements of an observable sequence based on a predicate by incorporating the element's index.
 /// Synonym for the method 'Where'
 /// </summary>
 /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
 /// <param name="source">An observable sequence whose elements to filter.</param>
 /// <param name="predicate">A function to test each source element for a conditio; the second parameter of the function represents the index of the source element.</param>
 /// <returns>An observable sequence that contains elements from the input sequence that satisfy the condition.</returns>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="source" /> or <paramref name="predicate" /> is null.</exception>
 public static IQbservable <TSource> Filter <TSource>(this IQbservable <TSource> source, Expression <Func <TSource, int, bool> > predicate)
 {
     return(Qbservable.Where <TSource>(source, predicate));
 }
 /// <summary>
 /// Projects each element of an observable sequence to a task by incorporating the element's index with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence.
 /// Synonym for the method 'SelectMany'
 /// </summary>
 /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
 /// <typeparam name="TTaskResult">The type of the results produced by the projected intermediate tasks.</typeparam>
 /// <typeparam name="TResult">The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results.</typeparam>
 /// <param name="source">An observable sequence of elements to project.</param>
 /// <param name="taskSelector">A transform function to apply to each element; the second parameter of the function represents the index of the source element.</param>
 /// <param name="resultSelector">A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element.</param>
 /// <returns>An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element.</returns>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="source" /> or <paramref name="taskSelector" /> or <paramref name="resultSelector" /> is null.</exception>
 /// <remarks>This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using <see cref="Reactive.Threading.Tasks.TaskObservableExtensions.ToObservable{TSource}(Task{TSource})" />.</remarks>
 public static IQbservable <TResult> FlatMap <TSource, TTaskResult, TResult>(this IQbservable <TSource> source, Expression <Func <TSource, int, CancellationToken, Task <TTaskResult> > > taskSelector, Expression <Func <TSource, int, TTaskResult, TResult> > resultSelector)
 {
     return(Qbservable.SelectMany <TSource, TTaskResult, TResult>(source, taskSelector, resultSelector));
 }
 /// <summary>
 /// Projects each element of an observable sequence to an enumerable sequence and concatenates the resulting enumerable sequences into one observable sequence.
 /// Synonym for the method 'SelectMany'
 /// </summary>
 /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
 /// <typeparam name="TResult">The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence.</typeparam>
 /// <param name="source">An observable sequence of elements to project.</param>
 /// <param name="selector">A transform function to apply to each element.</param>
 /// <returns>An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence.</returns>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
 /// <remarks>The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the <see cref="Observable.ToObservable{TSource}(IEnumerable{TSource})" /> conversion.</remarks>
 public static IQbservable <TResult> FlatMap <TSource, TResult>(this IQbservable <TSource> source, Expression <Func <TSource, IEnumerable <TResult> > > selector)
 {
     return(Qbservable.SelectMany <TSource, TResult>(source, selector));
 }
 /// <summary>
 /// Projects each element of an observable sequence to a task with cancellation support and merges all of the task results into one observable sequence.
 /// Synonym for the method 'SelectMany'
 /// </summary>
 /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
 /// <typeparam name="TResult">The type of the result produced by the projected tasks and the elements in the merged result sequence.</typeparam>
 /// <param name="source">An observable sequence of elements to project.</param>
 /// <param name="selector">A transform function to apply to each element.</param>
 /// <returns>An observable sequence whose elements are the result of the tasks executed for each element of the input sequence.</returns>
 /// <remarks>This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using <see cref="Reactive.Threading.Tasks.TaskObservableExtensions.ToObservable{TSource}(Task{TSource})" />.</remarks>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="source" /> or <paramref name="selector" /> is null.</exception>
 public static IQbservable <TResult> FlatMap <TSource, TResult>(this IQbservable <TSource> source, Expression <Func <TSource, CancellationToken, Task <TResult> > > selector)
 {
     return(Qbservable.SelectMany <TSource, TResult>(source, selector));
 }
 /// <summary>
 /// Projects each notification of an observable sequence to an observable sequence by incorporating the element's index and merges the resulting observable sequences into one observable sequence.
 /// Synonym for the method 'SelectMany'
 /// </summary>
 /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
 /// <typeparam name="TResult">The type of the elements in the projected inner sequences and the elements in the merged result sequence.</typeparam>
 /// <param name="source">An observable sequence of notifications to project.</param>
 /// <param name="onNext">A transform function to apply to each element; the second parameter of the function represents the index of the source element.</param>
 /// <param name="onError">A transform function to apply when an error occurs in the source sequence.</param>
 /// <param name="onCompleted">A transform function to apply when the end of the source sequence is reached.</param>
 /// <returns>An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence.</returns>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="source" /> or <paramref name="onNext" /> or <paramref name="onError" /> or <paramref name="onCompleted" /> is null.</exception>
 public static IQbservable <TResult> FlatMap <TSource, TResult>(this IQbservable <TSource> source, Expression <Func <TSource, int, IObservable <TResult> > > onNext, Expression <Func <Exception, IObservable <TResult> > > onError, Expression <Func <IObservable <TResult> > > onCompleted)
 {
     return(Qbservable.SelectMany <TSource, TResult>(source, onNext, onError, onCompleted));
 }
 /// <summary>
 /// Projects each element of the source observable sequence to the other observable sequence and merges the resulting observable sequences into one observable sequence.
 /// Synonym for the method 'SelectMany'
 /// </summary>
 /// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
 /// <typeparam name="TOther">The type of the elements in the other sequence and the elements in the result sequence.</typeparam>
 /// <param name="source">An observable sequence of elements to project.</param>
 /// <param name="other">An observable sequence to project each element from the source sequence onto.</param>
 /// <returns>An observable sequence whose elements are the result of projecting each source element onto the other sequence and merging all the resulting sequences together.</returns>
 /// <exception cref="ArgumentNullException">
 /// <paramref name="source" /> or <paramref name="other" /> is null.</exception>
 public static IQbservable <TOther> FlatMap <TSource, TOther>(this IQbservable <TSource> source, IObservable <TOther> other)
 {
     return(Qbservable.SelectMany <TSource, TOther>(source, other));
 }