liurunyu
2023-11-20 aab5b6fc250e074c8cac9e5d244bab011b9d9a32
pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/mw/channel/rmi/RmiFrameWork.java
@@ -7,8 +7,8 @@
   /**
    * 关闭服务的请求
    * @return
    * @throws RemoteException
    * @return 命令结果的ID,如果为空,则说明出错
    * @throws RemoteException 异常
    */
   String shutRequest() throws RemoteException;
@@ -16,15 +16,15 @@
    * 异步请求
    * @param command 命令
    * @return 命令结果的ID,如果为空,则说明出错
    * @throws RemoteException
    * @throws RemoteException 异常
    */
   String asyncRequest(Object command) throws RemoteException;
   /**
    * 同步请求
    * @param command 命令
    * @return
    * @throws RemoteException
    * @return 命令结果,如果为空,则说明出错
    * @throws RemoteException 异常
    */
   Object syncRequest(Object command) throws RemoteException;
}