18 lines
377 B
C#
Raw Normal View History

2025-01-16 11:31:50 +01:00
using Logging;
namespace CodexClient
{
2025-01-16 13:24:57 +01:00
public interface IIProcessControlFactory
{
IProcessControl CreateProcessControl(ICodexInstance instance);
}
2025-01-16 11:31:50 +01:00
public interface IProcessControl
{
2025-01-16 13:24:57 +01:00
void Stop(bool waitTillStopped);
IDownloadedLog DownloadLog(LogFile file);
void DeleteDataDirFolder();
bool HasCrashed();
2025-01-16 11:31:50 +01:00
}
}