You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

synergyStatusEnum.go 253 B

12345678910111213141516171819
  1. package enum
  2. type Status int64
  3. const (
  4. SYNERGIZED Status = 0
  5. NOT_SYNERGIZED Status = 1
  6. )
  7. func (s Status) String() string {
  8. switch s {
  9. case SYNERGIZED:
  10. return "已协同"
  11. case NOT_SYNERGIZED:
  12. return "未协同"
  13. default:
  14. return ""
  15. }
  16. }

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration for JCC in a non intrusive and autonomous peer-to-peer manner.