15 lines
258 B
C#
15 lines
258 B
C#
namespace MxGateway.Server.Workers;
|
|
|
|
public enum WorkerClientErrorCode
|
|
{
|
|
InvalidState,
|
|
ProtocolViolation,
|
|
PipeDisconnected,
|
|
CommandTimeout,
|
|
WorkerFaulted,
|
|
HeartbeatExpired,
|
|
ShutdownTimeout,
|
|
GatewayShutdown,
|
|
WriteFailed,
|
|
}
|