// 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.Collections.Generic; namespace System.Reactive.Linq.ObservableImpl { internal sealed class ToArray : Producer._> { private readonly IObservable _source; public ToArray(IObservable source) { _source = source; } protected override _ CreateSink(IObserver observer) => new(observer); protected override void Run(_ sink) => sink.Run(_source); internal sealed class _ : Sink { private List _list; public _(IObserver observer) : base(observer) { _list = new List(); } public override void OnNext(TSource value) { _list.Add(value); } public override void OnError(Exception error) { Cleanup(); base.OnError(error); } public override void OnCompleted() { var list = _list; Cleanup(); ForwardOnNext(list.ToArray()); ForwardOnCompleted(); } private void Cleanup() { _list = null!; } } } }