WithKeywords sets the bitmask of keywords that determine the categories of events for the provider to emit.
(keywords uint64)
| 175 | // WithKeywords sets the bitmask of keywords that determine |
| 176 | // the categories of events for the provider to emit. |
| 177 | func WithKeywords(keywords uint64) Option { |
| 178 | return func(o *opts) { |
| 179 | o.keywords = keywords |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | // WithCaptureState indicates that the provider should |
| 184 | // emit its state information. |