You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, events are being created by the policy report informer. which then sends them to the queue and then to the debouncer which then through its dependence on this interface
typeEventPublisherinterface {
// RegisterListener register Handlers called on each PolicyReport EventRegisterListener(string, PolicyReportListener)
// UnregisterListener removes an registered listenerUnregisterListener(string)
// GetListener returns a list of all registered ListenersGetListener() map[string]PolicyReportListener// Publish Process LifecycleEvent with all registered listenersPublish(eventLifecycleEvent)
// RegisterPostListener register Handlers called on each PolicyReport Event after all regular listeners are finishedRegisterPostListener(string, PolicyReportListener)
// UnregisterPostListener removes an registered post listenerUnregisterPostListener(string)
}
Calls the Publish() method to actually send data to the targets. We can experiment with other sources (e.g apache kafka) adding items to the work queue of the policy reporter for them to be processed by processNextItem()
The text was updated successfully, but these errors were encountered:
Currently, events are being created by the policy report informer. which then sends them to the queue and then to the debouncer which then through its dependence on this interface
Calls the
Publish()
method to actually send data to the targets. We can experiment with other sources (e.g apache kafka) adding items to the work queue of the policy reporter for them to be processed byprocessNextItem()
The text was updated successfully, but these errors were encountered: