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.
Required Methods§
Implementors§
impl<S: Scope> Sourceable<S> for Source
Available on non-crate feature
real-time only.