mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +00:00
18 lines
377 B
C#
18 lines
377 B
C#
using Logging;
|
|
|
|
namespace CodexClient
|
|
{
|
|
public interface IIProcessControlFactory
|
|
{
|
|
IProcessControl CreateProcessControl(ICodexInstance instance);
|
|
}
|
|
|
|
public interface IProcessControl
|
|
{
|
|
void Stop(bool waitTillStopped);
|
|
IDownloadedLog DownloadLog(LogFile file);
|
|
void DeleteDataDirFolder();
|
|
bool HasCrashed();
|
|
}
|
|
}
|