Adding LoadID methods in storage_interface

This commit is contained in:
TeoV
2019-03-26 10:19:57 +02:00
committed by Dan Christian Bogos
parent b2cd78af5d
commit ba419ec67e
7 changed files with 64 additions and 1 deletions

View File

@@ -128,6 +128,8 @@ type DataDB interface {
GetDispatcherProfileDrv(string, string) (*DispatcherProfile, error)
SetDispatcherProfileDrv(*DispatcherProfile) error
RemoveDispatcherProfileDrv(string, string) error
GetItemLoadIDsDrv(itemIDPrefix string) (loadIDs map[string]string, err error)
SetLoadIDsDrv(loadIDs map[string]string) error
GetDispatcherHostDrv(string, string) (*DispatcherHost, error)
SetDispatcherHostDrv(*DispatcherHost) error
RemoveDispatcherHostDrv(string, string) error