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.

acEnum.go 331 B

1234567891011121314151617181920212223
  1. package enum
  2. type AcStatus string
  3. const (
  4. statR AcStatus = "statR"
  5. statC AcStatus = "statC"
  6. statQ AcStatus = "statQ"
  7. statW AcStatus = "statW"
  8. )
  9. func (s AcStatus) String() string {
  10. switch s {
  11. case statR:
  12. return "Running"
  13. case statC:
  14. return "Completed"
  15. case statQ, statW:
  16. return "Pending"
  17. default:
  18. return ""
  19. }
  20. }

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.