[RICPLT-2734] E2Mgr: Automation
[ric-plt/e2mgr.git] / E2Manager / rmrCgo / rmrCgoApi.go
index f2ee545..4a9f8c4 100644 (file)
@@ -31,7 +31,7 @@ import (
        "e2mgr/logger"
 )
 
-func (*Context) Init(port string, maxMsgSize int, flags int, logger *logger.Logger) *RmrMessenger {//TODO remove pointer from interface
+func (*Context) Init(port string, maxMsgSize int, flags int, logger *logger.Logger) RmrMessenger {
        pp := C.CString(port)
        defer C.free(unsafe.Pointer(pp))
        logger.Debugf("#rmrCgoApi.Init - Going to initiate RMR router")
@@ -51,7 +51,7 @@ func (*Context) Init(port string, maxMsgSize int, flags int, logger *logger.Logg
        // Each round is about 1000 attempts with a short sleep between each round.
        C.rmr_set_stimeout(ctx.RmrCtx, C.int(1000))
        r := RmrMessenger(ctx)
-       return &r
+       return r
 }
 
 func (ctx *Context) SendMsg(msg *MBuf) (*MBuf, error) {
@@ -105,14 +105,6 @@ func (ctx *Context) RecvMsg() (*MBuf, error) {
        return mbuf, nil
 }
 
-func (ctx *Context) RtsMsg(msg *MBuf) {
-       ctx.checkContextInitialized()
-       ctx.Logger.Debugf("#rmrCgoApi.RtsMsg - Going to return message to the sender")
-       allocatedCMBuf := C.rmr_alloc_msg(ctx.RmrCtx, C.int(ctx.MaxMsgSize))
-       defer C.rmr_free_msg(allocatedCMBuf)
-       C.rmr_rts_msg(ctx.RmrCtx, allocatedCMBuf)
-}
-
 func (ctx *Context) IsReady() bool {
        ctx.Logger.Debugf("#rmrCgoApi.IsReady - Going to check if routing table is initialized")
        return int(C.rmr_ready(ctx.RmrCtx)) != 0