pub trait SourceConfig: Send + Sync { // Required method fn build(&self, cx: SourceContext) -> Result<JoinHandle<()>>; }
Trait for component configurations that can build a source task.