12 lines
150 B
C#
12 lines
150 B
C#
namespace MxGateway.Server.Workers;
|
|
|
|
public enum WorkerClientState
|
|
{
|
|
Created,
|
|
Handshaking,
|
|
Ready,
|
|
Closing,
|
|
Closed,
|
|
Faulted,
|
|
}
|