Class BusyReporter
Implements
Inherited Members
Namespace: LemonEdge.Connections.Database.Tasks
Assembly: LemonEdge.Database.Connector.dll
Syntax
public class BusyReporter : IBusyReporter
Constructors
BusyReporter()
Declaration
public BusyReporter()
Properties
IsBusy
Indicates if the system is still showing as busy. Will hold true until an equal amount of calls to StopBusy() have been made as were to DisplayBusy(string)
Declaration
public bool IsBusy { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
DisplayBusy(string)
Displays the specified message to the user while the system is busy processing.
This is added to a stack of busy messages. The system will continue to display itself as busy until an equal amount of StopBusy() calls are made
Declaration
public void DisplayBusy(string msg)
Parameters
Type | Name | Description |
---|---|---|
string | msg | The message to be displayed as the system is busy processing |
StopBusy()
Stops the system from displaying the message associated with the last call to DisplayBusy(string)
The system will then show as no longer being busy, or still busy showing the last message provided to DisplayBusy(string) until an equal amount of calls to this method is made as was to DisplayBusy(string)
Declaration
public void StopBusy()