Uses of Interface
com.veeva.vault.sdk.api.queue.Message
Packages that use Message
Package
Description
This package provides interfaces to send and receive Spark messages.
-
Uses of Message in com.veeva.vault.sdk.api.queue
Methods in com.veeva.vault.sdk.api.queue that return MessageModifier and TypeMethodDescriptionMessage.appendPath
(String connection, String path) Appends a path to a specific connection's base URL for this Message.Message.appendPathWithTokens
(String connection, String token) Appends a path to a specific connection's base URL using a valid Vault or custom token which will be resolved on send.MessageContext.getMessage()
Retrieves this Message object.QueueService.newMessage
(String queueName) Creates a new instance of aMessage
to be sent on a queue withQueueService.putMessage(Message)
, in order to set message attributes and items.QueueService.newMessage
(String queueName, List<String> connectionNames) Creates a new instance of aMessage
to be sent on a queue withQueueService.putMessage(Message)
, in order to set message attributes and items.Message.setAttribute
(String name, Object value) Sets an attribute with name and value.Message.setAttributeWithToken
(String name, String token) Sets an attribute with the name and value of a valid message token.Message.setMessageItems
(List<String> items) Sets a list of message items for this Message.Methods in com.veeva.vault.sdk.api.queue with parameters of type MessageModifier and TypeMethodDescriptionQueueService.putMessage
(Message message) Puts aMessage
onto a queue specified byQueueService.newMessage(String)
.