Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

SMILA/Documentation/QueueWorker/ExperimentalFeatures

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. The difference only that Router starts execution from SET Record blackboard operation, Listener starts execution from SYNCHRONIZE Record blackboard operation.

It's possible 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