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

Difference between revisions of "SMILA/Documentation/QueueWorker/ExperimentalFeatures"

(Replacing page with '{{note|no longer part of SMILA}}')
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
== Queue Worker Experimental Features==
+
{{note|no longer part of SMILA}}
=== Turning OFF Blackboard operations ===
+
 
+
It's possible to turn off blackboard related operations in Router/Listener by configuration attribute "BlackboardSync=false"
+
<source lang="java">
+
<Rule ... >
+
    ...
+
  <Task BlackboardSync="false">
+
      ...
+
    </Task>
+
</Rule>
+
</source>
+
 
+
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".
+
 
+
<source lang="java">
+
<Rule ... >
+
    ...
+
  <Task InitiallySet="true">
+
      ...
+
    </Task>
+
</Rule>
+
</source>
+
 
+
It useful for catching redirected record in second clustering node.
+

Latest revision as of 06:46, 25 January 2012

Note.png
no longer part of SMILA

Back to the top