接口 ModuleDeployer
-
- 所有超级接口:
Deployer<ModuleModel>
public interface ModuleDeployer extends Deployer<ModuleModel>
Export/refer services of module
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 ReferenceCachegetReferenceCache()FuturegetStartFuture()voidinitialize()Initialize the componentbooleanisBackground()Whether start in background, do not await finishbooleanisInitialized()voidpostDestroy()voidpreDestroy()voidprepare()voidsetPending()Futurestart()Starts the component.voidstop()Stops the component.-
从接口继承的方法 org.apache.dubbo.common.deploy.Deployer
addDeployListener, getError, getState, isFailed, isPending, isRunning, isStarted, isStarting, isStopped, isStopping, removeDeployListener
-
-
-
-
方法详细资料
-
initialize
void initialize() throws IllegalStateException从接口复制的说明:DeployerInitialize the component- 指定者:
initialize在接口中Deployer<ModuleModel>- 抛出:
IllegalStateException
-
start
Future start() throws IllegalStateException
从接口复制的说明:DeployerStarts the component.- 指定者:
start在接口中Deployer<ModuleModel>- 返回:
- 抛出:
IllegalStateException
-
getStartFuture
Future getStartFuture()
-
stop
void stop() throws IllegalStateException
从接口复制的说明:DeployerStops the component.- 指定者:
stop在接口中Deployer<ModuleModel>- 抛出:
IllegalStateException
-
preDestroy
void preDestroy() throws IllegalStateException
-
postDestroy
void postDestroy() throws IllegalStateException
-
isInitialized
boolean isInitialized()
-
getReferenceCache
ReferenceCache getReferenceCache()
-
prepare
void prepare()
-
setPending
void setPending()
-
isBackground
boolean isBackground()
Whether start in background, do not await finish
-
-