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.

storage.go 297 B

12345678910111213
  1. package database
  2. import "gitlink.org.cn/JointCloud/pcm-coordinator/api/internal/scheduler/entity"
  3. type Storage interface {
  4. GetProviderParams() ([]entity.ProviderParams, error)
  5. FindAvailableParticipants() ([]entity.Participant, error)
  6. }
  7. type NSIDSpecified interface {
  8. Storage
  9. NSID() error
  10. }

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.