| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- // 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_SYNCCTX
- using System.Reactive.Concurrency;
- using System.Threading;
- namespace System.Reactive.Disposables
- {
- /// <summary>
- /// Represents a disposable resource whose disposal invocation will be posted to the specified <seealso cref="T:System.Threading.SynchronizationContext"/>.
- /// </summary>
- public sealed class ContextDisposable : ICancelable
- {
- private readonly SynchronizationContext _context;
- private volatile IDisposable _disposable;
- /// <summary>
- /// Initializes a new instance of the <see cref="T:System.Reactive.Disposables.ContextDisposable"/> class that uses the specified <see cref="T:System.Threading.SynchronizationContext"/> on which to dispose the specified disposable resource.
- /// </summary>
- /// <param name="context">Context to perform disposal on.</param>
- /// <param name="disposable">Disposable whose Dispose operation to run on the given synchronization context.</param>
- /// <exception cref="ArgumentNullException"><paramref name="context"/> or <paramref name="disposable"/> is null.</exception>
- public ContextDisposable(SynchronizationContext context, IDisposable disposable)
- {
- if (context == null)
- throw new ArgumentNullException("context");
- if (disposable == null)
- throw new ArgumentNullException("disposable");
- _context = context;
- _disposable = disposable;
- }
- /// <summary>
- /// Gets the provided <see cref="T:System.Threading.SynchronizationContext"/>.
- /// </summary>
- public SynchronizationContext Context
- {
- get { return _context; }
- }
- /// <summary>
- /// Gets a value that indicates whether the object is disposed.
- /// </summary>
- public bool IsDisposed
- {
- get { return _disposable == BooleanDisposable.True; }
- }
- /// <summary>
- /// Disposes the underlying disposable on the provided <see cref="T:System.Threading.SynchronizationContext"/>.
- /// </summary>
- public void Dispose()
- {
- #pragma warning disable 0420
- var disposable = Interlocked.Exchange(ref _disposable, BooleanDisposable.True);
- #pragma warning restore 0420
- if (disposable != BooleanDisposable.True)
- {
- _context.PostWithStartComplete(d => d.Dispose(), disposable);
- }
- }
- }
- }
- #endif
|