X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fsdl%2Ftypes.go;h=355169921322b84dd913732d6b65c887a8f9411d;hb=be9f2684de5ed4afbe22f441cb9db5f268d05af3;hp=dd86890094565252fa18852105eabf47ad1a573e;hpb=92162653c9741f2417d1a36ec1c211d6863d0a68;p=ric-plt%2Frtmgr.git diff --git a/pkg/sdl/types.go b/pkg/sdl/types.go index dd86890..3551699 100644 --- a/pkg/sdl/types.go +++ b/pkg/sdl/types.go @@ -18,26 +18,26 @@ */ /* Mnemonic: sdl/types.go - Abstract: Containes SDL (Shared Data Layer) specific types + Abstract: Contains SDL (Shared Data Layer) specific types Date: 16 March 2019 */ package sdl import "routing-manager/pkg/rtmgr" -type readAll func(string) (*rtmgr.RicComponents, error) -type writeAll func(string, *rtmgr.RicComponents) error +//type readAll func(string) (*rtmgr.RicComponents, error) +//type writeAll func(string, *rtmgr.RicComponents) error -type SdlEngineConfig struct { - Name string - Version string - Protocol string - Instance SdlEngine +type EngineConfig struct { + Name string + Version string + Protocol string + Instance Engine IsAvailable bool } -type SdlEngine interface { - ReadAll(string) (*rtmgr.RicComponents, error) - WriteAll(string, *rtmgr.RicComponents) error - WriteXapps(string, *[]rtmgr.XApp) error +type Engine interface { + ReadAll(string) (*rtmgr.RicComponents, error) + WriteAll(string, *rtmgr.RicComponents) error + WriteXApps(string, *[]rtmgr.XApp) error }