optimize the fault notification test
[doctor.git] / doctor_tests / consumer / base.py
1 ##############################################################################
2 # Copyright (c) 2017 ZTE Corporation and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 import abc
10 import six
11
12
13 @six.add_metaclass(abc.ABCMeta)
14 class BaseConsumer(object):
15
16     def __init__(self, conf, log):
17         self.conf = conf
18         self.log = log
19         self._notified_time = None
20
21     @property
22     def notified_time(self):
23         return self._notified_time
24
25     @notified_time.setter
26     def notified_time(self, notified_time):
27         self._notified_time = notified_time
28
29     @abc.abstractmethod
30     def start(self):
31         pass
32
33     @abc.abstractmethod
34     def stop(self):
35         pass