Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Filter ¶
type Filter interface { // Filter compute the predicate on the provided event and returns the result of the matching Filter(ctx context.Context, event cloudevents.Event) FilterResult // Cleanup cleans up any resources/goroutines used by the filter Cleanup() }
Filter is an interface representing an event filter of the trigger filter
type FilterResult ¶
type FilterResult int
FilterResult has the result of the filtering operation.
const ( PassFilter FilterResult = iota FailFilter NoFilter )
func (FilterResult) String ¶ added in v0.39.0
func (x FilterResult) String() string
Click to show internal directories.
Click to hide internal directories.