Dispatch Block
From KynetxDocs
Note: Dispatch blocks have not been implemented as of January 2009.
Dispatch blocks are used to route a ruleset evaluation to another ruleset based on specific criteria. Dispatching allows one ruleset to be used as the master ruleset in a ruleset collection. Doing so makes rulesets shorter. Shorter rulesets are easier to read and perform better.
If none of the dispatch criteria are met, the rules in the ruleset (if any) are evaluated.
The following types are available:
- domain match - when the caller domain matches the given string, the target ruleset for the dispatch is evaluated instead of the current ruleset.
The following example shows a dispatch block with three domain match dispatches.
dispatch {
domain "www.google.com" -> "966337974";
domain "google.com" -> "966337974";
domain "www.circuitcity.com" -> "966337982";
}
