// 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 { public class AsyncObservable : AsyncObservableBase { private readonly Func, Task> _subscribeAsync; public AsyncObservable(Func, Task> subscribeAsync) { if (subscribeAsync == null) throw new ArgumentNullException(nameof(subscribeAsync)); _subscribeAsync = subscribeAsync; } protected override Task SubscribeAsyncCore(IAsyncObserver observer) { if (observer == null) throw new ArgumentNullException(nameof(observer)); return _subscribeAsync(observer); } } }