vtk_eventfilter

vtk_eventfilter_append

Usage:         
vtk_eventfilter_append subject_list verb_list [-RX regExp | -ID id]

Description:   
Set a filter for the current asynchronous communication channel. 
This allows a substantial reduction of the number of event that get sent to the channel. 

Examples:
vtk_eventfilter_append JOB {START DISPATCH ERROR STUCK} 
...now only the events (job, start), (job, dispatch), (job, error) and (job, stuck) are sent to the channel. 

vtk_eventfilter_append FILE INFORM 
...now also the events (file, inform) are sent. 

vtk_eventfilter_append RETRACE STOP 
...and (retrace, stop) too.

Note:
This command work as an "OR" filter i.e. an event is sent to the channel if it pass at least one of the filters in the chain.
To clear the chain use the command vtk_eventfilter_clear.

vtk_eventfilter_clear

Usage:
vtk_eventfilter_clear 

Description:   
Reset the filter for the current asynchronous communication channel. It does not require any arguments. Use it as it is: vtk_eventfilter_clear