File: Host\RemoteGlobalOperationNotificationService.cs
Web Access
Project: ..\..\..\src\Workspaces\Remote\ServiceHub\Microsoft.CodeAnalysis.Remote.ServiceHub.csproj (Microsoft.CodeAnalysis.Remote.ServiceHub)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
using System;
using System.Collections.Immutable;
using System.Composition;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.CodeAnalysis.Notification;
 
namespace Microsoft.CodeAnalysis.Remote.Services
{
    [Export(typeof(IGlobalOperationNotificationService)), Shared]
    internal sealed class RemoteGlobalOperationNotificationService : IGlobalOperationNotificationService
    {
        public event EventHandler? Started;
        public event EventHandler? Stopped;
 
        [ImportingConstructor]
        [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
        public RemoteGlobalOperationNotificationService()
        {
        }
 
        public IDisposable Start(string operation)
        {
            // Currently not supported for anything on the remote side to start a global
            // operation.
            throw new NotSupportedException();
        }
 
        public void OnStarted()
            => Started?.Invoke(this, EventArgs.Empty);
 
        public void OnStopped()
            => Stopped?.Invoke(this, EventArgs.Empty);
    }
}