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 MessageDtoMessageDto. setAction(java.lang.String action)This setter method must only be used during the deserialization process.MessageDtoMessageDto. setApiLevel(int apiLevel)This setter method must only be used during the deserialization process.MessageDtoMessageDto. setBody(java.lang.String body)This setter method must only be used during the deserialization process.MessageDtoMessageDto. setClientNodeId(java.lang.String clientNodeId)This setter method must only be used during the deserialization process.MessageDtoMessageDto. setLocalReaderName(java.lang.String localReaderName)This setter method must only be used during the deserialization process.MessageDtoMessageDto. setRemoteReaderName(java.lang.String remoteReaderName)This setter method must only be used during the deserialization process.MessageDtoMessageDto. setServerNodeId(java.lang.String serverNodeId)This setter method must only be used during the deserialization process.MessageDtoMessageDto. 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 aMessageDtofrom the client.Methods in org.eclipse.keyple.distributed with parameters of type MessageDto Modifier and Type Method Description voidAsyncNodeClient. 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.java.util.List<MessageDto>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 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 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 MessageDto Modifier and Type Method Description voidAsyncEndpointClientSpi. 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.java.util.List<MessageDto>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.
-