Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

SMILA/Documentation/QueueWorker/Tasks

< SMILA‎ | Documentation‎ | QueueWorker
Revision as of 07:27, 24 November 2008 by Unnamed Poltroon (Talk)

Tasks

 <Fetch Filter="...some-filter-name..."/>

Fetch Record from the Blackboard. Optional Filter attribute point that Record should be filtered.

  <Process Workflow="AddPipeline"/>

Executes BPEL Pipeline.

 <Send BrokerId="broker1" Queue="SMILA.connectivity"  RecordFilter="nothing">
   <SetProperty Name="doSomething">really do something</SetProperty>
 </Send>

Send Record to JMS queue. Broker connection with correspondent BrokerID should be specified in Broker Connection Service configuration. RecordFilter attribute used to specify record filter applied to Record before sending. "SetProperty" tag used for setting additional properties to JMS Message used for storing Record in queue. It may be useful for next processing by Listener service for selection "Rule" with Condition tag.

Back to the top