diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2018-07-07 15:02:20 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2018-07-07 15:02:20 +0300 |
| commit | 4ca8cee91fb46977b75e8329c18d9b6a4654b12e (patch) | |
| tree | c2a0473f30d9302f4b8eea21f90106d24ba23461 /Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications | |
| parent | bed649c7492655c0137237c910b200e053bfa119 (diff) | |
| download | Tango-4ca8cee91fb46977b75e8329c18d9b6a4654b12e.tar.gz Tango-4ca8cee91fb46977b75e8329c18d9b6a4654b12e.zip | |
Working on PPC jobs loading performance...
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs index 96de08447..f7fb67a19 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs @@ -128,5 +128,26 @@ namespace Tango.PPC.Common.Notifications /// Gets the pop notification command. /// </summary> RelayCommand<NotificationItem> PopNotificationCommand { get; } + + /// <summary> + /// Gets a value indicating whether this instance is in global busy state. + /// </summary> + bool IsInGlobalBusyState { get; } + + /// <summary> + /// Sets the global busy message. + /// </summary> + /// <param name="message">The message.</param> + void SetGlobalBusyMessage(String message); + + /// <summary> + /// Releases the global busy message. + /// </summary> + void ReleaseGlobalBusyMessage(); + + /// <summary> + /// Gets the current global busy message. + /// </summary> + String GlobalBusyMessage { get; } } } |
