X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Fhandlers%2Frmrmsghandlers%2Fnotification_handler.go;h=4a85de24cb10c8bc65f22268267aa299301afad9;hb=28c0585ff0a4779b938d284a9abc64fbe381bee0;hp=51fa2d39138fd3d078f75891c72f2a585ab435a2;hpb=ffd085dd7f0654b84b163a7bfedd3fa89e7b8a71;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/handlers/rmrmsghandlers/notification_handler.go b/E2Manager/handlers/rmrmsghandlers/notification_handler.go index 51fa2d3..4a85de2 100644 --- a/E2Manager/handlers/rmrmsghandlers/notification_handler.go +++ b/E2Manager/handlers/rmrmsghandlers/notification_handler.go @@ -13,21 +13,17 @@ // 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 import ( - "e2mgr/logger" "e2mgr/models" - "time" ) type NotificationHandler interface { - Handle(*logger.Logger, *models.NotificationRequest, chan<- *models.NotificationResponse) + Handle(*models.NotificationRequest) } - -//TODO: remove that -func printHandlingSetupResponseElapsedTimeInMs(logger *logger.Logger, msg string, startTime time.Time) { - logger.Infof("%s: %f ms", msg, float64(time.Since(startTime))/float64(time.Millisecond)) -} \ No newline at end of file