Skip to main content

JoinBuilder

Struct JoinBuilder 

Source
pub struct JoinBuilder<O, R: JoinFanInRuntime + 'static> { /* private fields */ }
Expand description

Configures a multi-input join transform.

Available on any runtime that implements aimdb_executor::JoinFanInRuntime. The fan-in queue (bounded channel between input forwarders and the trigger loop) is created by the runtime adapter at database startup — capacity is an internal constant chosen per adapter (Tokio: 64, Embassy: 8, WASM: 64).

Obtain via [RecordRegistrar::transform_join].

Implementations§

Source§

impl<O, R> JoinBuilder<O, R>
where O: Send + Sync + Clone + Debug + 'static, R: JoinFanInRuntime + 'static,

Source

pub fn input<I>(self, key: impl RecordKey) -> Self
where I: Send + Sync + Clone + Debug + 'static,

Add a typed input to the join.

Source

pub fn on_triggers<F, Fut>(self, handler: F) -> JoinPipeline<O, R>
where F: FnOnce(JoinEventRx, Producer<O, R>) -> Fut + Send + 'static, Fut: Future<Output = ()> + Send + 'static,

Complete the pipeline by providing an async task that owns the event loop and state.

The closure receives a JoinEventRx to read trigger events and a crate::Producer to emit output values. Both are owned — moved into the async move block — so the closure can freely hold borrows across .await points and maintain any state it needs.

The task runs until all input forwarders close (i.e., all upstream records stop producing).

.on_triggers(|mut rx, producer| async move {
    let mut last_a: Option<f32> = None;
    let mut last_b: Option<f32> = None;
    while let Ok(trigger) = rx.recv().await {
        match trigger.index() {
            0 => last_a = trigger.as_input::<InputA>().copied(),
            1 => last_b = trigger.as_input::<InputB>().copied(),
            _ => {}
        }
        if let (Some(a), Some(b)) = (last_a, last_b) {
            producer.produce(compute(a, b)).await.ok();
        }
    }
})

Auto Trait Implementations§

§

impl<O, R> Freeze for JoinBuilder<O, R>

§

impl<O, R> !RefUnwindSafe for JoinBuilder<O, R>

§

impl<O, R> Send for JoinBuilder<O, R>
where O: Send,

§

impl<O, R> Sync for JoinBuilder<O, R>
where O: Sync,

§

impl<O, R> Unpin for JoinBuilder<O, R>
where O: Unpin, R: Unpin,

§

impl<O, R> UnsafeUnpin for JoinBuilder<O, R>

§

impl<O, R> !UnwindSafe for JoinBuilder<O, R>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<R> RuntimeForProfiling for R