1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // 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<TSource> : Producer<TSource[], ToArray<TSource>._>
- {
- private readonly IObservable<TSource> _source;
- public ToArray(IObservable<TSource> source)
- {
- _source = source;
- }
- protected override _ CreateSink(IObserver<TSource[]> observer) => new _(observer);
- protected override void Run(_ sink) => sink.Run(_source);
- internal sealed class _ : Sink<TSource, TSource[]>
- {
- private readonly List<TSource> _list;
- public _(IObserver<TSource[]> observer)
- : base(observer)
- {
- _list = new List<TSource>();
- }
- public override void OnNext(TSource value)
- {
- _list.Add(value);
- }
- public override void OnCompleted()
- {
- ForwardOnNext(_list.ToArray());
- ForwardOnCompleted();
- }
- }
- }
- }
|