// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the Apache 2.0 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 readonly List _list; public _(IObserver observer) : base(observer) { _list = new List(); } public override void OnNext(TSource value) { _list.Add(value); } public override void OnCompleted() { ForwardOnNext(_list.ToArray()); ForwardOnCompleted(); } } } }