// 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. namespace System.Reactive { internal class SynchronizedObserver : ObserverBase { private readonly object _gate; private readonly IObserver _observer; public SynchronizedObserver(IObserver observer, object gate) { _gate = gate; _observer = observer; } protected override void OnNextCore(T value) { lock (_gate) { _observer.OnNext(value); } } protected override void OnErrorCore(Exception exception) { lock (_gate) { _observer.OnError(exception); } } protected override void OnCompletedCore() { lock (_gate) { _observer.OnCompleted(); } } } }