pub trait Sourceable<S>{
// Required method
fn source(
&self,
scope: &mut S,
context: SourcingContext<S::Timestamp>,
) -> Vec<(Aid, AttributeConfig, Stream<S, ((Value, Value), S::Timestamp, isize)>)>;
}
Expand description
An external data source that can provide Datoms.