ConfigFilterChain specifies the configuration for the whole fitler chain.
| 45 | |
| 46 | // ConfigFilterChain specifies the configuration for the whole fitler chain. |
| 47 | type ConfigFilterChain struct { |
| 48 | // Procs specifies the number of baker filters running concurrently. |
| 49 | // When set to a value greater than 1, filtering may be faster but |
| 50 | // record ordering is not guaranteed anymore. |
| 51 | // The default value is 16 |
| 52 | Procs int |
| 53 | } |
| 54 | |
| 55 | // ConfigFilter specifies the configuration for a single filter component. |
| 56 | type ConfigFilter struct { |
nothing calls this directly
no outgoing calls
no test coverage detected