IsRundown determines if this is a rundown events.
()
| 169 | |
| 170 | // IsRundown determines if this is a rundown events. |
| 171 | func (e *Event) IsRundown() bool { |
| 172 | return e.Type == ProcessRundown || e.Type == ThreadRundown || e.Type == ModuleRundown || |
| 173 | e.Type == FileRundown || e.Type == RegKCBRundown |
| 174 | } |
| 175 | |
| 176 | // IsSuccess checks if the event contains the status parameter |
| 177 | // and in such case, returns true if the operation completed |
no outgoing calls