| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // 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<T> : ObserverBase<T>
- {
- private readonly object _gate;
- private readonly IObserver<T> _observer;
- public SynchronizedObserver(IObserver<T> 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();
- }
- }
- }
- }
|