REM:
1. 清理冗余代码
This commit is contained in:
HuangXin 2020-09-05 11:28:29 +08:00
parent 518b048fe6
commit 099f8de10b
2 changed files with 0 additions and 49 deletions

View File

@ -1,32 +0,0 @@
package com.dispose.ability;
import com.dispose.common.DisposeCapacityType;
/**
* The interface Device dispose ability.
*
* @param <T> the type parameter
* @author <huangxin@cmhi.chinamoblie.com>
*/
public interface DeviceDisposeAbility <T> {
/**
* Device dispose exec t.
*
* @param callback the callback
* @param capType the cap type
* @param ipAddr the ip addr
* @param args the args
* @return the t
*/
T deviceDisposeExec(DisposeTaskCallback callback, DisposeCapacityType capType, String ipAddr, Object... args);
/**
* Device dispose stop t.
*
* @param callback the callback
* @param capType the cap type
* @param args the args
* @return the t
*/
T deviceDisposeStop(DisposeTaskCallback callback, DisposeCapacityType capType, Object... args);
}

View File

@ -1,17 +0,0 @@
package com.dispose.ability;
import com.dispose.common.ErrorCode;
/**
* The interface Dispose task callback.
*
* @author <huangxin@cmhi.chinamoblie.com>
*/
public interface DisposeTaskCallback {
/**
* Upgrade status callback.
*
* @param err the err
*/
void upgradeStatusCallback(ErrorCode err);
}