states.go 86 B

12345678
  1. package nsq
  2. // states
  3. const (
  4. StateInit = iota
  5. StateDisconnected
  6. StateConnected
  7. )