nirvana.support.services.ServiceLifecycle.scala Maven / Gradle / Ivy
// Copyright 2014 Jun Tsai. All rights reserved.
// site: http://www.ganshane.com
package nirvana.support.services
/**
* service lifecycle
*/
trait ServiceLifecycle {
/**
* 启动服务
*/
def start()
/**
* 服务关闭
*/
def shutdown()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy