OrezzerO opened a new issue, #11796:
URL: https://github.com/apache/dubbo/issues/11796
ApplicationDeployer and ModuleDeployer interfaces have some duplicated
methods comparing with Deployer . Can we delete it?
```java
/**
* Initialize the component
*/
void initialize() throws IllegalStateException;
/**
* Starts the component.
* @return
*/
Future start() throws IllegalStateException;
/**
* Stops the component.
*/
void stop() throws IllegalStateException;
```
These three methods both exists in `ApplicationDeployer`,`ModuleDeployer`
and `Deployer` . Can we delete them from `ApplicationDeployer` and
`ModuleDeployer` ?
BTW , some methods in `ApplicationDeployer` and `ModuleDeployer` are
duplicated. Can we pull them up to `Deployer` ?
If there is no other issue, I will commit a pr to fix them.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]