ExtractorPatternEventFireTime
ExtractorPatternEventFireTime
Enum
- BeforeExtractorPattern Before an extractor is applied (including before any scripts on it run). The returned value should be a boolean and indicates whether the extractor should be run or not. Any non-boolean result is the same as true. Also note that regardless of whether the extractor will be run or not, the event for after extractor pattern will still be fired.
- AfterExtractorPatternAppliedButBeforeScripts After an extractor is applied (but before any scripts on it run &emdash; including the after apparent match scripts).
- AfterEachExtractorMatch After each match of an extractor. This will be applied before any of the "After each pattern match" scripts are applied.
- AfterExtractorPattern After an extractor is applied (including any scripts on it run).
Change Log
Version |
Description |
6.0.55a |
Introduced for pro and enterprise editions. |
Examples
How to use the EventFireTime with the session.addEventcallback method.
session.addEventCallback(ExtractorPatternEventFireTime.AfterEachExtractorMatch, handler);