FilterDesc describes a Filter component to the topology.
| 74 | |
| 75 | // FilterDesc describes a Filter component to the topology. |
| 76 | type 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. |
| 84 | type OutputDesc struct { |
nothing calls this directly
no outgoing calls
no test coverage detected