v2rayN/v2rayN/ServiceLib/Handler/AppEvents.cs

22 lines
655 B
C#
Raw Normal View History

using System.Reactive;
using System.Reactive.Subjects;
namespace ServiceLib.Handler;
public static class AppEvents
{
public static readonly Subject<Unit> ProfilesRefreshRequested = new();
public static readonly Subject<string> SendSnackMsgRequested = new();
public static readonly Subject<string> SendMsgViewRequested = new();
public static readonly Subject<Unit> AppExitRequested = new();
2025-08-30 10:01:01 +00:00
2025-09-02 09:12:38 +00:00
public static readonly Subject<bool> ShutdownRequested = new();
2025-08-30 12:36:16 +00:00
public static readonly Subject<Unit> AdjustMainLvColWidthRequested = new();
2025-08-30 10:01:01 +00:00
public static readonly Subject<ServerSpeedItem> DispatcherStatisticsRequested = new();
}