com.aliyun.openservices.ons.api.Admin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw-boot-starter-aliyun-ons Show documentation
Show all versions of gw-boot-starter-aliyun-ons Show documentation
A Java Utils Libraray By Geewit
package com.aliyun.openservices.ons.api;
/**
* 管理类接口
*/
public interface Admin {
/**
* 检查服务是否已经启动.
*
* @return true
如果服务已启动; 其它情况返回false
* @see Admin#isClosed()
*/
boolean isStarted();
/**
* 检查服务是否已经关闭
*
* @return true
如果服务已关闭; 其它情况返回false
* @see Admin#isStarted()
*/
boolean isClosed();
/**
* 启动服务
*/
void start();
/**
* 关闭服务
*/
void shutdown();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy