예제 #1
0
class CronApplicationDaemon(Daemon):

    _svc_name_ = "imagis_cron"
    _svc_display_name_ = "iMagis Cron"
    _svc_description_ = "Service to schedule periodic task"

    def start(self):
        self.app = CronApplication()
        self.app.start()

    def stop(self):
        self.app.stop()
예제 #2
0
class CronApplicationDaemon(Daemon):

    _svc_name_ = "imagis_cron"
    _svc_display_name_ = "iMagis Cron"
    _svc_description_ = "Service to schedule periodic task"

    def start(self):
        self.app = CronApplication()
        self.app.start()

    def stop(self):
        self.app.stop()
예제 #3
0
 def start(self):
     self.app = CronApplication()
     self.app.start()
예제 #4
0
 def start(self):
     self.app = CronApplication()
     self.app.start()