| | |
| | | |
| | | /** |
| | | * Send message and receive a response at the same time. |
| | | * 发送消息并同时接收响应。 |
| | | * @param clazz |
| | | * @param topic |
| | | * @param response notification of whether the start is successful. |
| | |
| | | * @return |
| | | */ |
| | | ServiceReply publishServicesTopic(String sn, String method, Object data); |
| | | |
| | | <T> ServiceReply<T> publishRequestsTopic(TypeReference<T> clazz, String sn, String method, Object data, String bid); |
| | | |
| | | ServiceReply publishRequestsTopic(String sn, String method, Object data, String bid); |
| | | |
| | | ServiceReply publishRequestsTopic(String sn, String method, Object data); |
| | | |
| | | } |