Interface IBusyReporter
Used for providing a generic implementation for displaying, or logging, a busy processing message for the user
Each DisplayBusy(String) call is added to a stack. The system is still shown as busy processing un till an equal amount of StopBusy() calls are made
Namespace: LemonEdge.Entities.Processors
Assembly: API.dll
Syntax
public interface IBusyReporter
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
bool IsBusy { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
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
void DisplayBusy(string msg)
Parameters
Type | Name | Description |
---|---|---|
System.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
void StopBusy()