Uses of Class
org.eclipse.keyple.distributed.MessageDto
Package
Description
APIs of the Network components (Nodes, DTOs, Exceptions).
SPIs used by the Network components (Network Endpoints).
-
Uses of MessageDto in org.eclipse.keyple.distributed
Modifier and TypeMethodDescriptionfinal MessageDto
This setter method must only be used during the deserialization process.final MessageDto
MessageDto.setApiLevel
(int apiLevel) This setter method must only be used during the deserialization process.final MessageDto
This setter method must only be used during the deserialization process.final MessageDto
MessageDto.setClientNodeId
(String clientNodeId) This setter method must only be used during the deserialization process.final MessageDto
MessageDto.setLocalReaderName
(String localReaderName) This setter method must only be used during the deserialization process.final MessageDto
MessageDto.setRemoteReaderName
(String remoteReaderName) This setter method must only be used during the deserialization process.final MessageDto
MessageDto.setServerNodeId
(String serverNodeId) This setter method must only be used during the deserialization process.final MessageDto
MessageDto.setSessionId
(String sessionId) This setter method must only be used during the deserialization process.Modifier and TypeMethodDescriptionSyncNodeServer.onRequest
(MessageDto message) Must be invoked by the server controller endpoint following the reception and deserialization of aMessageDto
from the client.Modifier and TypeMethodDescriptionvoid
AsyncNodeClient.onMessage
(MessageDto message) Must be invoked by theAsyncEndpointClientSpi
endpoint following the reception and deserialization of aMessageDto
from the server.void
AsyncNodeServer.onMessage
(MessageDto message) Must be invoked by theAsyncEndpointServerSpi
endpoint following the reception and deserialization of aMessageDto
from the client.SyncNodeServer.onRequest
(MessageDto message) Must be invoked by the server controller endpoint following the reception and deserialization of aMessageDto
from the client. -
Uses of MessageDto in org.eclipse.keyple.distributed.spi
Modifier and TypeMethodDescriptionSyncEndpointClientSpi.sendRequest
(MessageDto message) Invoked by theSyncNodeClient
node to send aMessageDto
to the server.
You have to serialize and send the providedMessageDto
to the server, then retry the response which is a list ofMessageDto
.Modifier and TypeMethodDescriptionvoid
AsyncEndpointClientSpi.sendMessage
(MessageDto message) Invoked by theAsyncNodeClient
node to send aMessageDto
to the server.
You have to : Find the opened session using the accessible sessionId value using the methodgetSessionId()
on the provided message to send.void
AsyncEndpointServerSpi.sendMessage
(MessageDto message) Invoked by theAsyncNodeServer
node to send aMessageDto
to the client.
You have to : Find the opened session using the accessible sessionId value using the methodgetSessionId()
on the provided message to send.SyncEndpointClientSpi.sendRequest
(MessageDto message) Invoked by theSyncNodeClient
node to send aMessageDto
to the server.
You have to serialize and send the providedMessageDto
to the server, then retry the response which is a list ofMessageDto
.