mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12:38:20 +00:00
rename the update_finished event to end_of_data and make it fire in
more cases. It will now not only fire after table-reads have been completed, but also after the last event of a whole-file-read (or whole-db-read, etc.). The interface also has been extended a bit to allow readers to directly fire the event should they so choose. This allows the event to be fired in direct table-setting/event-sending modes, which was previously not possible.
This commit is contained in:
parent
296686d5ca
commit
a6d87fcab7
29 changed files with 101 additions and 94 deletions
|
@ -280,6 +280,16 @@ protected:
|
|||
*
|
||||
*/
|
||||
void Clear();
|
||||
|
||||
/**
|
||||
* Method telling the manager that we finished reading the current
|
||||
* data source. Will trigger an end_of_data event.
|
||||
*
|
||||
* Note: When using SendEntry/the tracking mode this is triggered
|
||||
* automatically by EndCurrentSend(). Only use if not using the
|
||||
* tracking mode. Otherwise the event will be sent twice.
|
||||
*/
|
||||
void EndOfData();
|
||||
|
||||
// Content-sending-functions (tracking mode): Only changed lines are propagated.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue