Interface SyncEndpointClientSpi
-
public interface SyncEndpointClientSpiSPI of the client endpoint using a synchronous network protocol.You must provide an implementation of this interface if you plan to use a Client-Server communication protocol, such as standard HTTP for example.
This endpoint interacts only with a remote server controller.
- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<MessageDto>sendRequest(MessageDto message)Invoked by theSyncNodeClientnode to send aMessageDtoto the server.
You have to serialize and send the providedMessageDtoto the server, then retry the response which is a list ofMessageDto.
-
-
-
Method Detail
-
sendRequest
java.util.List<MessageDto> sendRequest(MessageDto message)
Invoked by theSyncNodeClientnode to send aMessageDtoto the server.
You have to serialize and send the providedMessageDtoto the server, then retry the response which is a list ofMessageDto.- Parameters:
message- The message to send.- Returns:
- a null or empty list if there is no result.
- Since:
- 2.0.0
-
-