Difference between revisions of "Filter"
From DocDataFlow
Line 1: | Line 1: | ||
A filter is an [[Atomic adapter|atomic adapter]] which can selectively strip granules from the data flow. | A filter is an [[Atomic adapter|atomic adapter]] which can selectively strip granules from the data flow. | ||
+ | |||
+ | Inside the filter, there is some programming logic which checks every input granule, and returns a pass/fail answer. | ||
+ | |||
+ | Any granules that fail the test are dropped from the data flow. | ||
+ | |||
+ | An example: a filter could be set up to drop any word granules that contain a word that starts with a lower case letter. |
Revision as of 19:09, 29 December 2013
A filter is an atomic adapter which can selectively strip granules from the data flow.
Inside the filter, there is some programming logic which checks every input granule, and returns a pass/fail answer.
Any granules that fail the test are dropped from the data flow.
An example: a filter could be set up to drop any word granules that contain a word that starts with a lower case letter.