Uses of Class
com.attivio.sdk.esb.WorkflowQueue
-
Packages that use WorkflowQueue Package Description com.attivio.client Contains the Client Attivio API for adding content, submitting queries, and sending general purpose messages to an Attivio server.com.attivio.sdk.esb com.attivio.sdk.ingest com.attivio.sdk.search com.attivio.util.serialization Contains classes related to serialization/desearialization of objects to/from XML. -
-
Uses of WorkflowQueue in com.attivio.client
Methods in com.attivio.client that return WorkflowQueue Modifier and Type Method Description WorkflowQueue
AbstractReceiverClient. getClientWorkflow()
Methods in com.attivio.client with parameters of type WorkflowQueue Modifier and Type Method Description java.util.concurrent.atomic.AtomicInteger
AbstractReceiverClient.ClientMessageSender. getCounter(java.util.UUID clientId, WorkflowQueue wfq)
void
AbstractReceiverClient.ClientMessageSender. prepareMessageWorkflows(WorkflowQueue clientWorkflow, PlatformMessage msg)
void
AbstractReceiverClient. setClientWorkflow(WorkflowQueue clientWorkflow)
Sets the default client workflows to use for this client. -
Uses of WorkflowQueue in com.attivio.sdk.esb
Methods in com.attivio.sdk.esb that return WorkflowQueue Modifier and Type Method Description WorkflowQueue
WorkflowQueue. clone()
WorkflowQueue
CgiRequest. getCgiWorkflowQueue()
Gets the workflow queue parsed from the CGI parameters.WorkflowQueue
CgiRequest. getCgiWorkflows(java.lang.String parameter)
Parse a parameter that contains a list of workflows.WorkflowQueue
AbstractListMessage. getWorkflowQueue()
Gets the workflow queue.WorkflowQueue
AbstractListMessage. getWorkflowQueue(boolean createIfNull)
Optionally creates a new empty queue if null.WorkflowQueue
AbstractPlatformMessage. getWorkflowQueue()
Gets the workflow queue.WorkflowQueue
AbstractPlatformMessage. getWorkflowQueue(boolean createIfNull)
Optionally creates a new empty queue if null.WorkflowQueue
PlatformMessage. getWorkflowQueue()
Gets the workflow queue.WorkflowQueue
PlatformMessage. getWorkflowQueue(boolean createIfNull)
Optionally creates a new empty queue if null.WorkflowQueue
AbstractPlatformMessage. removeWorkflowQueue()
Remove the workflow queue for this message.Methods in com.attivio.sdk.esb with parameters of type WorkflowQueue Modifier and Type Method Description boolean
WorkflowQueue. isSameWorkflowOrder(WorkflowQueue queue)
Determines if the passed in WorkflowQueue has the same workflows in the same order as this.void
WorkflowQueue. prepend(WorkflowQueue wfq)
adds all the workflows inwfq
to the start of our queuevoid
CgiRequest. setCgiWorkflowQueue(WorkflowQueue workflowQueue)
Force set the CGI workflow queue.void
CgiRequest. setCgiWorkflows(java.lang.String parameter, WorkflowQueue workflowQueue)
Set the CGI workflows from a workflow queuevoid
AbstractListMessage. setWorkflowQueue(WorkflowQueue workflowQueue)
Sets the workflow queue.void
AbstractPlatformMessage. setWorkflowQueue(WorkflowQueue workflowQueue)
Sets the workflow queue.void
PlatformMessage. setWorkflowQueue(WorkflowQueue wfQueue)
Sets the workflow queue.Constructors in com.attivio.sdk.esb with parameters of type WorkflowQueue Constructor Description AbstractPlatformMessage(java.util.UUID cid, WorkflowQueue workflows)
Creates a message based on a client ID and a workflow queue. -
Uses of WorkflowQueue in com.attivio.sdk.ingest
Methods in com.attivio.sdk.ingest that return WorkflowQueue Modifier and Type Method Description WorkflowQueue
BulkUpdate. getQueryWorkflowQueue()
Get the workflows to send the selection query through.Methods in com.attivio.sdk.ingest with parameters of type WorkflowQueue Modifier and Type Method Description void
BulkUpdate. setQueryWorkflowQueue(WorkflowQueue queue)
Set the workflows to send the selection query through.Constructors in com.attivio.sdk.ingest with parameters of type WorkflowQueue Constructor Description AbstractIndexMessage(java.util.UUID cid, WorkflowQueue workflows)
ConstructorBackup(java.util.UUID cid, WorkflowQueue workflows)
Constructor with a client ID and a workflow queueBulkUpdate(java.util.UUID cid, WorkflowQueue workflow, DocumentMode mode)
Commit(java.util.UUID cid, WorkflowQueue workflows)
Constructor with a client ID and a workflow queueDocumentList(java.util.UUID cid, WorkflowQueue workFlows)
Constructor with a client ID and a workflow queue.Optimize(java.util.UUID cid, WorkflowQueue workflows)
Constructor with a client ID and a workflow queue. -
Uses of WorkflowQueue in com.attivio.sdk.search
Constructors in com.attivio.sdk.search with parameters of type WorkflowQueue Constructor Description QueryResponse(java.util.UUID clientId, WorkflowQueue workflows)
-
Uses of WorkflowQueue in com.attivio.util.serialization
Methods in com.attivio.util.serialization that return WorkflowQueue Modifier and Type Method Description WorkflowQueue
WorkflowQueueConverter. unmarshal(com.thoughtworks.xstream.io.HierarchicalStreamReader reader, com.thoughtworks.xstream.converters.UnmarshallingContext context)
static WorkflowQueue
WorkflowQueueConverter. unmarshal(com.thoughtworks.xstream.io.HierarchicalStreamReader reader, com.thoughtworks.xstream.converters.UnmarshallingContext context, com.thoughtworks.xstream.mapper.Mapper mapper)
Unmarshal a WorkflowQueue.Methods in com.attivio.util.serialization with parameters of type WorkflowQueue Modifier and Type Method Description static void
WorkflowQueueConverter. marshal(WorkflowQueue queue, com.thoughtworks.xstream.io.HierarchicalStreamWriter writer, com.thoughtworks.xstream.converters.MarshallingContext context, com.thoughtworks.xstream.mapper.Mapper mapper)
Marshal a WorkflowQueue (without the containing element).static void
WorkflowQueueConverter. marshalNode(WorkflowQueue queue, com.thoughtworks.xstream.io.HierarchicalStreamWriter writer, com.thoughtworks.xstream.converters.MarshallingContext context, com.thoughtworks.xstream.mapper.Mapper mapper)
Marshal a WorkflowQueue.
-