Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AsyncLockObserver.cs « Internal « Reactive « System.Reactive.Core « Source « NET « Rx - github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2237ae3dc402e16e4fb0258daedb3b2858d6230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

using System.Reactive.Concurrency;

namespace System.Reactive
{
    internal class AsyncLockObserver<T> : ObserverBase<T>
    {
        private readonly AsyncLock _gate;
        private readonly IObserver<T> _observer;

        public AsyncLockObserver(IObserver<T> observer, AsyncLock gate)
        {
            _gate = gate;
            _observer = observer;
        }

        protected override void OnNextCore(T value)
        {
            _gate.Wait(() =>
            {
                _observer.OnNext(value);
            });
        }

        protected override void OnErrorCore(Exception exception)
        {
            _gate.Wait(() =>
            {
                _observer.OnError(exception);
            });
        }

        protected override void OnCompletedCore()
        {
            _gate.Wait(() =>
            {
                _observer.OnCompleted();
            });
        }
    }
}