Trait ConnectedSource
pub trait ConnectedSource {
type Output: Send;
type Stream: Stream<Item = Result<Self::Output, Error>> + Send + Sync;
// Required method
fn into_source(self) -> Self::Stream;
}Available on crate feature
deploy_integration only.