X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fxapp%2Ftypes.go;h=251dae589ab7613eb757371e751cdadc5b43eaee;hb=fbf8bcf39bf48d940f176400c70e1f20ea39a8a5;hp=b67f9f1e15b09488f057f003190677f628bfc951;hpb=f11ab7a3d67cea79004d4598607fd4fa4c1ee28a;p=ric-plt%2Fxapp-frame.git diff --git a/pkg/xapp/types.go b/pkg/xapp/types.go index b67f9f1..251dae5 100755 --- a/pkg/xapp/types.go +++ b/pkg/xapp/types.go @@ -27,9 +27,12 @@ import ( type RMRStatistics struct{} type RMRClient struct { + protPort string + numWorkers int context unsafe.Pointer ready int wg sync.WaitGroup + msgWg sync.WaitGroup mux sync.Mutex stat map[string]Counter consumers []MessageConsumer @@ -38,8 +41,9 @@ type RMRClient struct { } type RMRMeid struct { - PlmnID string - EnbID string + PlmnID string + EnbID string + RanName string } type MessageConsumer interface {