1234567891011121314151617181920212223242526272829303132333435 |
- // 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 UnsafeAsyncObserver<T> : IAsyncObserver<T>
- {
- private readonly Func<T, Task> _onNextAsync;
- private readonly Func<Exception, Task> _onErrorAsync;
- private readonly Func<Task> _onCompletedAsync;
- public UnsafeAsyncObserver(Func<T, Task> onNextAsync, Func<Exception, Task> onErrorAsync, Func<Task> onCompletedAsync)
- {
- if (onNextAsync == null)
- throw new ArgumentNullException(nameof(onNextAsync));
- if (onErrorAsync == null)
- throw new ArgumentNullException(nameof(onErrorAsync));
- if (onCompletedAsync == null)
- throw new ArgumentNullException(nameof(onCompletedAsync));
- _onNextAsync = onNextAsync;
- _onErrorAsync = onErrorAsync;
- _onCompletedAsync = onCompletedAsync;
- }
- public Task OnCompletedAsync() => _onCompletedAsync();
- public Task OnErrorAsync(Exception error) => _onErrorAsync(error ?? throw new ArgumentNullException(nameof(error)));
- public Task OnNextAsync(T value) => _onNextAsync(value);
- }
- }
|