RIC-997: ErrorIndication handling in e2mgr
[ric-plt/e2mgr.git] / E2Manager / handlers / rmrmsghandlers / ran_lost_connection_handler.go
index 7933963..e7d3ce5 100644 (file)
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 // See the License for the specific language governing permissions and
 // limitations under the License.
-//
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 
 package rmrmsghandlers
 
@@ -21,23 +24,24 @@ import (
        "e2mgr/logger"
        "e2mgr/managers"
        "e2mgr/models"
-       "e2mgr/sessions"
 )
 
 type RanLostConnectionHandler struct {
-       ranReconnectionManager managers.IRanReconnectionManager
+       ranDisconnectionManager managers.IRanDisconnectionManager
+       logger                  *logger.Logger
 }
 
-func NewRanLostConnectionHandler(ranReconnectionManager managers.IRanReconnectionManager) RanLostConnectionHandler {
-       return RanLostConnectionHandler{
-               ranReconnectionManager: ranReconnectionManager,
+func NewRanLostConnectionHandler(logger *logger.Logger, ranDisconnectionManager managers.IRanDisconnectionManager) *RanLostConnectionHandler {
+       return &RanLostConnectionHandler{
+               logger:                  logger,
+               ranDisconnectionManager: ranDisconnectionManager,
        }
 }
-func (handler RanLostConnectionHandler) Handle(logger *logger.Logger, e2Sessions sessions.E2Sessions, request *models.NotificationRequest, messageChannel chan<- *models.NotificationResponse) {
+func (h *RanLostConnectionHandler) Handle(request *models.NotificationRequest) {
 
        ranName := request.RanName
 
-       logger.Warnf("#RanLostConnectionHandler.Handle - RAN name: %s - Received lost connection notification", ranName)
+       h.logger.Warnf("#RanLostConnectionHandler.Handle - RAN name: %s - Received lost connection notification", ranName)
 
-       _ = handler.ranReconnectionManager.ReconnectRan(ranName)
+       _ = h.ranDisconnectionManager.DisconnectRan(ranName)
 }