Updated filter indexing

This commit is contained in:
Trial97
2021-05-18 14:01:11 +03:00
committed by Dan Christian Bogos
parent 00cece8943
commit 0a75016833
33 changed files with 742 additions and 175 deletions

View File

@@ -84,9 +84,9 @@ type DataDB interface {
GetChargerProfileDrv(string, string) (*ChargerProfile, error)
SetChargerProfileDrv(*ChargerProfile) error
RemoveChargerProfileDrv(string, string) error
GetDispatcherProfileDrv(string, string) (*DispatcherProfile, error)
SetDispatcherProfileDrv(*DispatcherProfile) error
RemoveDispatcherProfileDrv(string, string) error
GetDispatcherProfileDrv(*context.Context, string, string) (*DispatcherProfile, error)
SetDispatcherProfileDrv(*context.Context, *DispatcherProfile) error
RemoveDispatcherProfileDrv(*context.Context, string, string) error
GetItemLoadIDsDrv(itemIDPrefix string) (loadIDs map[string]int64, err error)
SetLoadIDsDrv(ctx *context.Context, loadIDs map[string]int64) error
RemoveLoadIDsDrv() error