Chain — dispatch exchange to ordered list of filters
A chain is responsible for dispatching an exchange to an ordered list of filters, and finally a handler.
{
"name": string,
"type": "Chain",
"config": {
"filters": [ string, ... ],
"handler": string
}
}
"filters": array of strings, requiredThe names of the filter heap objects to dispatch the exchange to, in order.
"handler": string, requiredThe name of the handler object to dispatch to once the exchange has traversed all of the specified filters.