class StoreServerApplicationDaemon(Daemon):

    _svc_name_ = "imagis_store_server"
    _svc_display_name_ = "iMagis Store Server"
    _svc_description_ = "Service to receive files by http"

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

    def stop(self):
        self.app.stop()
Example #2
0
class StoreServerApplicationDaemon(Daemon):

    _svc_name_ = "imagis_store_server"
    _svc_display_name_ = "iMagis Store Server"
    _svc_description_ = "Service to receive files by http"

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

    def stop(self):
        self.app.stop()
Example #3
0
 def start(self):
     self.app = StoreServerApplication()
     self.app.start()
 def start(self):
     self.app = StoreServerApplication()
     self.app.start()