Uses of Class
org.eclipse.keyple.distributed.MessageDto
Packages that use 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
Methods in org.eclipse.keyple.distributed that return MessageDtoModifier 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.Methods in org.eclipse.keyple.distributed that return types with arguments of type MessageDtoModifier and TypeMethodDescriptionSyncNodeServer.onRequest
(MessageDto message) Must be invoked by the server controller endpoint following the reception and deserialization of aMessageDto
from the client.Methods in org.eclipse.keyple.distributed with parameters of type MessageDtoModifier 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.Constructors in org.eclipse.keyple.distributed with parameters of type MessageDto -
Uses of MessageDto in org.eclipse.keyple.distributed.spi
Methods in org.eclipse.keyple.distributed.spi that return types with arguments of type MessageDtoModifier 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
.Methods in org.eclipse.keyple.distributed.spi with parameters of type MessageDtoModifier 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
.