using System.Diagnostics;
namespace ZB.MOM.WW.MxGateway.Server.Workers;
/// Factory for creating and starting worker processes.
public interface IWorkerProcessFactory
{
/// Starts a worker process with the specified start information.
/// Process start configuration.
/// The started worker process.
IWorkerProcess Start(ProcessStartInfo startInfo);
}