MCPcopy Create free account
hub / github.com/AdRoll/baker / FilterDesc

Struct FilterDesc

desc.go:76–81  ·  view source on GitHub ↗

FilterDesc describes a Filter component to the topology.

Source from the content-addressed store, hash-verified

74
75// FilterDesc describes a Filter component to the topology.
76type FilterDesc struct {
77 Name string // Name of the filter
78 New func(FilterParams) (Filter, error) // New is the constructor-like function called by the topology to create a new filter
79 Config interface{} // Config is the component configuration
80 Help string // Help string
81}
82
83// OutputDesc describes an Output component to the topology.
84type OutputDesc struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected