Blame | Last modification | View Log | RSS feed
'''Created on 04-Jul-2012@author: amar'''from shop2020.thriftpy.alert.AlertService import Clientfrom shop2020.clients.GenericClient import GenericClientclass AlertClient(GenericClient):def __init__(self):GenericClient.__init__(self, "alert_service_server_host", "alert_service_server_port")self.__start__()def __start__(self):self.client = Client(self.protocol)def get_client(self):return self.client