// 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. #if !NO_PERF using System; namespace System.Reactive.Concurrency { class Synchronize : Producer { private readonly IObservable _source; private readonly object _gate; public Synchronize(IObservable source, object gate) { _source = source; _gate = gate; } public Synchronize(IObservable source) { _source = source; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1062:Validate arguments of public methods", MessageId = "2", Justification = "Visibility restricted to friend assemblies. Those should be correct by inspection.")] protected override IDisposable Run(IObserver observer, IDisposable cancel, Action setSink) { var sink = new _(this, observer, cancel); setSink(sink); return _source.SubscribeSafe(sink); } class _ : Sink, IObserver { private readonly Synchronize _parent; private readonly object _gate; public _(Synchronize parent, IObserver observer, IDisposable cancel) : base(observer, cancel) { _parent = parent; _gate = _parent._gate ?? new object(); } public void OnNext(TSource value) { lock (_gate) { base._observer.OnNext(value); } } public void OnError(Exception error) { lock (_gate) { base._observer.OnError(error); base.Dispose(); } } public void OnCompleted() { lock (_gate) { base._observer.OnCompleted(); base.Dispose(); } } } } } #endif