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 MessageDtoThis setter method must only be used during the deserialization process.final MessageDtoMessageDto.setApiLevel(int apiLevel) This setter method must only be used during the deserialization process.final MessageDtoThis setter method must only be used during the deserialization process.final MessageDtoMessageDto.setClientNodeId(String clientNodeId) This setter method must only be used during the deserialization process.final MessageDtoMessageDto.setLocalReaderName(String localReaderName) This setter method must only be used during the deserialization process.final MessageDtoMessageDto.setRemoteReaderName(String remoteReaderName) This setter method must only be used during the deserialization process.final MessageDtoMessageDto.setServerNodeId(String serverNodeId) This setter method must only be used during the deserialization process.final MessageDtoMessageDto.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 aMessageDtofrom the client.Methods in org.eclipse.keyple.distributed with parameters of type MessageDtoModifier and TypeMethodDescriptionvoidAsyncNodeClient.onMessage(MessageDto message) Must be invoked by theAsyncEndpointClientSpiendpoint following the reception and deserialization of aMessageDtofrom the server.voidAsyncNodeServer.onMessage(MessageDto message) Must be invoked by theAsyncEndpointServerSpiendpoint following the reception and deserialization of aMessageDtofrom the client.SyncNodeServer.onRequest(MessageDto message) Must be invoked by the server controller endpoint following the reception and deserialization of aMessageDtofrom 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 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.Methods in org.eclipse.keyple.distributed.spi with parameters of type MessageDtoModifier and TypeMethodDescriptionvoidAsyncEndpointClientSpi.sendMessage(MessageDto message) Invoked by theAsyncNodeClientnode to send aMessageDtoto the server.
You have to : Find the opened session using the accessible sessionId value using the methodgetSessionId()on the provided message to send.voidAsyncEndpointServerSpi.sendMessage(MessageDto message) Invoked by theAsyncNodeServernode to send aMessageDtoto 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 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.