Uses of Class
org.eclipse.keyple.distributed.MessageDto
-
Packages that use MessageDto Package Description org.eclipse.keyple.distributed APIs of the Network components (Nodes, DTOs, Exceptions).org.eclipse.keyple.distributed.spi SPIs used by the Network components (Network Endpoints). -
-
Uses of MessageDto in org.eclipse.keyple.distributed
Methods in org.eclipse.keyple.distributed that return MessageDto Modifier and Type Method Description MessageDto
MessageDto. setAction(java.lang.String action)
This setter method must only be used during the deserialization process.MessageDto
MessageDto. setApiLevel(int apiLevel)
This setter method must only be used during the deserialization process.MessageDto
MessageDto. setBody(java.lang.String body)
This setter method must only be used during the deserialization process.MessageDto
MessageDto. setClientNodeId(java.lang.String clientNodeId)
This setter method must only be used during the deserialization process.MessageDto
MessageDto. setLocalReaderName(java.lang.String localReaderName)
This setter method must only be used during the deserialization process.MessageDto
MessageDto. setRemoteReaderName(java.lang.String remoteReaderName)
This setter method must only be used during the deserialization process.MessageDto
MessageDto. setServerNodeId(java.lang.String serverNodeId)
This setter method must only be used during the deserialization process.MessageDto
MessageDto. setSessionId(java.lang.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 MessageDto Modifier and Type Method Description java.util.List<MessageDto>
SyncNodeServer. 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 MessageDto Modifier and Type Method Description void
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.java.util.List<MessageDto>
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 Constructor Description MessageDto(MessageDto from)
Constructor by copy. -
Uses of MessageDto in org.eclipse.keyple.distributed.spi
Methods in org.eclipse.keyple.distributed.spi that return types with arguments of type MessageDto Modifier and Type Method Description java.util.List<MessageDto>
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
.Methods in org.eclipse.keyple.distributed.spi with parameters of type MessageDto Modifier and Type Method Description void
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.java.util.List<MessageDto>
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
.
-