123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT License.
- // See the LICENSE file in the project root for more information.
- using System.Threading.Tasks;
- namespace System.Reactive.Linq
- {
- public partial class AsyncObservable
- {
- public static IAsyncObservable<TSource> LastOrDefaultAsync<TSource>(this IAsyncObservable<TSource> source) => LastOrDefault(source);
- public static IAsyncObservable<TSource> LastOrDefaultAsync<TSource>(this IAsyncObservable<TSource> source, Func<TSource, bool> predicate) => LastOrDefault(source, predicate);
- public static IAsyncObservable<TSource> LastOrDefaultAsync<TSource>(this IAsyncObservable<TSource> source, Func<TSource, ValueTask<bool>> predicate) => LastOrDefault(source, predicate);
- public static IAsyncObservable<TSource> LastOrDefault<TSource>(this IAsyncObservable<TSource> source)
- {
- if (source == null)
- throw new ArgumentNullException(nameof(source));
- return Create(
- source,
- (source, observer) => source.SubscribeSafeAsync(AsyncObserver.LastOrDefault(observer)));
- }
- public static IAsyncObservable<TSource> LastOrDefault<TSource>(this IAsyncObservable<TSource> source, Func<TSource, bool> predicate)
- {
- if (source == null)
- throw new ArgumentNullException(nameof(source));
- if (predicate == null)
- throw new ArgumentNullException(nameof(predicate));
- return CreateAsyncObservable<TSource>.From(
- source,
- predicate,
- static (source, predicate, observer) => source.SubscribeSafeAsync(AsyncObserver.LastOrDefault(observer, predicate)));
- }
- public static IAsyncObservable<TSource> LastOrDefault<TSource>(this IAsyncObservable<TSource> source, Func<TSource, ValueTask<bool>> predicate)
- {
- if (source == null)
- throw new ArgumentNullException(nameof(source));
- if (predicate == null)
- throw new ArgumentNullException(nameof(predicate));
- return CreateAsyncObservable<TSource>.From(
- source,
- predicate,
- static (source, predicate, observer) => source.SubscribeSafeAsync(AsyncObserver.LastOrDefault(observer, predicate)));
- }
- }
- public partial class AsyncObserver
- {
- public static IAsyncObserver<TSource> LastOrDefault<TSource>(IAsyncObserver<TSource> observer)
- {
- if (observer == null)
- throw new ArgumentNullException(nameof(observer));
- var hasValue = false;
- var lastValue = default(TSource);
- return Create<TSource>(
- x =>
- {
- hasValue = true;
- lastValue = x;
- return default;
- },
- observer.OnErrorAsync,
- async () =>
- {
- await observer.OnNextAsync(hasValue ? lastValue : default).ConfigureAwait(false);
- await observer.OnCompletedAsync().ConfigureAwait(false);
- }
- );
- }
- public static IAsyncObserver<TSource> LastOrDefault<TSource>(IAsyncObserver<TSource> observer, Func<TSource, bool> predicate)
- {
- if (observer == null)
- throw new ArgumentNullException(nameof(observer));
- if (predicate == null)
- throw new ArgumentNullException(nameof(predicate));
- return Where(LastOrDefault(observer), predicate);
- }
- public static IAsyncObserver<TSource> LastOrDefault<TSource>(IAsyncObserver<TSource> observer, Func<TSource, ValueTask<bool>> predicate)
- {
- if (observer == null)
- throw new ArgumentNullException(nameof(observer));
- if (predicate == null)
- throw new ArgumentNullException(nameof(predicate));
- return Where(LastOrDefault(observer), predicate);
- }
- }
- }
|