| 123456789101112131415161718192021222324252627282930313233343536373839404142 | // 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.Reactive.Subjects;using System.Threading.Tasks;namespace System.Reactive.Linq{    // REVIEW: Expose PublishLast using ConcurrentAsyncAsyncSubject<T> underneath.    public partial class AsyncObservable    {        public static IConnectableAsyncObservable<TSource> PublishLast<TSource>(this IAsyncObservable<TSource> source)        {            if (source == null)                throw new ArgumentNullException(nameof(source));            return Multicast(source, new SequentialAsyncAsyncSubject<TSource>());        }        public static IAsyncObservable<TResult> PublishLast<TSource, TResult>(this IAsyncObservable<TSource> source, Func<IAsyncObservable<TSource>, IAsyncObservable<TResult>> selector)        {            if (source == null)                throw new ArgumentNullException(nameof(source));            if (selector == null)                throw new ArgumentNullException(nameof(selector));            return Multicast(source, () => new SequentialAsyncAsyncSubject<TSource>(), selector);        }        public static IAsyncObservable<TResult> PublishLast<TSource, TResult>(this IAsyncObservable<TSource> source, Func<IAsyncObservable<TSource>, ValueTask<IAsyncObservable<TResult>>> selector)        {            if (source == null)                throw new ArgumentNullException(nameof(source));            if (selector == null)                throw new ArgumentNullException(nameof(selector));            return Multicast(source, () => new ValueTask<IAsyncSubject<TSource, TSource>>(new SequentialAsyncAsyncSubject<TSource>()), selector);        }    }}
 |