15 lines
274 B
C#
15 lines
274 B
C#
namespace MxGateway.Server.Workers;
|
|
|
|
public interface IWorkerProcess : IDisposable
|
|
{
|
|
int Id { get; }
|
|
|
|
bool HasExited { get; }
|
|
|
|
int? ExitCode { get; }
|
|
|
|
ValueTask WaitForExitAsync(CancellationToken cancellationToken);
|
|
|
|
void Kill(bool entireProcessTree);
|
|
}
|