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