Class DeployListenerAdapter<E extends ScopeModel>

java.lang.Object
org.apache.dubbo.common.deploy.DeployListenerAdapter<E>
All Implemented Interfaces:
DeployListener<E>

public class DeployListenerAdapter<E extends ScopeModel> extends Object implements DeployListener<E>
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onCompletion(E scopeModel)
    Triggered after deployer startup is complete.
    void
    onFailure(E scopeModel, Throwable cause)
    Useful to do something when deployer was failed.
    void
    onInitialize(E scopeModel)
    Useful to inject some configuration like MetricsConfig, RegistryConfig, etc.
    void
    onStarted(E scopeModel)
    Triggered before registering and exposing the service.
    void
    onStarting(E scopeModel)
    Triggered before starting module.
    void
    onStopped(E scopeModel)
    Triggered after the application is destroyed, can do some customized things after the service is offline and the reference is destroyed.
    void
    onStopping(E scopeModel)
    Triggered before the app is destroyed, can do some customized things before offline the service and destroy reference.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • DeployListenerAdapter

      public DeployListenerAdapter()
  • Method Details