// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the Apache 2.0 License. // See the LICENSE file in the project root for more information. using System.Threading.Tasks; namespace System.Reactive.Linq { partial class AsyncObservable { public static IAsyncObservable All(this IAsyncObservable source, Func predicate) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return Create(observer => source.SubscribeSafeAsync(AsyncObserver.All(observer, predicate))); } public static IAsyncObservable All(this IAsyncObservable source, Func> predicate) { if (source == null) throw new ArgumentNullException(nameof(source)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return Create(observer => source.SubscribeSafeAsync(AsyncObserver.All(observer, predicate))); } } partial class AsyncObserver { public static IAsyncObserver All(IAsyncObserver observer, Func predicate) { if (observer == null) throw new ArgumentNullException(nameof(observer)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return Create( async x => { var b = default(bool); try { b = predicate(x); } catch (Exception ex) { await observer.OnErrorAsync(ex).ConfigureAwait(false); return; } if (!b) { await observer.OnNextAsync(false).ConfigureAwait(false); await observer.OnCompletedAsync().ConfigureAwait(false); } }, observer.OnErrorAsync, async () => { await observer.OnNextAsync(true).ConfigureAwait(false); await observer.OnCompletedAsync().ConfigureAwait(false); } ); } public static IAsyncObserver All(IAsyncObserver observer, Func> predicate) { if (observer == null) throw new ArgumentNullException(nameof(observer)); if (predicate == null) throw new ArgumentNullException(nameof(predicate)); return Create( async x => { var b = default(bool); try { b = await predicate(x).ConfigureAwait(false); } catch (Exception ex) { await observer.OnErrorAsync(ex).ConfigureAwait(false); return; } if (!b) { await observer.OnNextAsync(false).ConfigureAwait(false); await observer.OnCompletedAsync().ConfigureAwait(false); } }, observer.OnErrorAsync, async () => { await observer.OnNextAsync(true).ConfigureAwait(false); await observer.OnCompletedAsync().ConfigureAwait(false); } ); } } }