Adds support for VNF metric based alarming
[osm/MON.git] / osm_mon / collector / collectors / base.py
index ed620bf..824e106 100644 (file)
 # For those usages not covered by the Apache License, Version 2.0 please
 # contact: bdiaz@whitestack.com or glavado@whitestack.com
 ##
-from multiprocessing import Queue
+from typing import List
+
+from osm_mon.collector.metric import Metric
 
 
 class BaseCollector:
-    def collect(self, vnfr: dict, queue: Queue):
+    def collect(self, vnfr: dict) -> List[Metric]:
         pass