Builds but needs tested
This commit is contained in:
19
APC Viewer/Models/Methods/IBackground.cs
Normal file
19
APC Viewer/Models/Methods/IBackground.cs
Normal file
@ -0,0 +1,19 @@
|
||||
namespace APCViewer.Models.Methods;
|
||||
|
||||
public interface IBackground
|
||||
{
|
||||
|
||||
void Update();
|
||||
void ClearMessage();
|
||||
List<string> DoBackup();
|
||||
bool IsPrimaryInstance();
|
||||
void Stop(bool immediate);
|
||||
void SetIsPrimaryInstance();
|
||||
string GetPDSF(long Sequence);
|
||||
void ClearIsPrimaryInstance();
|
||||
string GetIPDSF(long Sequence);
|
||||
void Catch(Exception exception);
|
||||
Tuple<List<string[]>, List<string[]>> GetTimePivot(bool isGaN = false, bool isSi = false);
|
||||
Tuple<int, object, object, string> SetViewBag(string directory, string filter, bool isGaN = false, bool isSi = false, bool forPDSF = false, bool forIPDSF = false);
|
||||
|
||||
}
|
Reference in New Issue
Block a user