接口 RemoteBuildCallback
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voiderrorReported(String message)error reported callbackvoiderrorReported(String message, Throwable e)error reported callbackvoidinfoReported(String message)info reported callbackvoidinfoReported(String message, Throwable e)info reported callbackMyJavaProgressFeedbackphaseStarted(MyJavaPhase phase, int count)started phase callbackMyJavaProgressFeedbackprogressReached(int progress)progress reached some value callbackvoidwarningReported(String message)warning reported callbackvoidwarningReported(String message, Throwable e)warning reported callback
-
-
-
方法详细资料
-
phaseStarted
MyJavaProgressFeedback phaseStarted(MyJavaPhase phase, int count) throws RemoteException
started phase callback- 抛出:
RemoteException
-
progressReached
MyJavaProgressFeedback progressReached(int progress) throws RemoteException
progress reached some value callback- 抛出:
RemoteException
-
errorReported
void errorReported(String message, Throwable e) throws RemoteException
error reported callback- 抛出:
RemoteException
-
errorReported
void errorReported(String message) throws RemoteException
error reported callback- 抛出:
RemoteException
-
warningReported
void warningReported(String message, Throwable e) throws RemoteException
warning reported callback- 抛出:
RemoteException
-
warningReported
void warningReported(String message) throws RemoteException
warning reported callback- 抛出:
RemoteException
-
infoReported
void infoReported(String message, Throwable e) throws RemoteException
info reported callback- 抛出:
RemoteException
-
infoReported
void infoReported(String message) throws RemoteException
info reported callback- 抛出:
RemoteException
-
-