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/ExperimentalFeatures

< SMILA‎ | Documentation‎ | QueueWorker
Revision as of 09:33, 25 November 2008 by Churkin.ivan.gmail.com (Talk | contribs) (New page: == Queue Worker Experimental Features== === Turning OFF Blackboard operations === It's possible to turn off blackboard related operations in Router/Listener by configuration attribute "Bl...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Queue Worker Experimental Features

Turning OFF Blackboard operations

It's possible to turn off blackboard related operations in Router/Listener by configuration attribute "BlackboardSync=false"

 <Rule ... >
    ...
   <Task BlackboardSync="false">
      ...
    </Task>
 </Rule>

It useful for redirecting complete Record to other clustering node (mainly in Router).

Switching Listener Task sequence execution in Router Task sequence execution mode

It's possible to simulate that Listener rule tasks execution works like Router rule tasks execution by configuration attribute "InitiallySet=true"

 <Rule ... >
    ...
   <Task InitiallySet="true">
      ...
    </Task>
 </Rule>

It useful for catching redirected record in second clustering node.

Back to the top