mz_adapter::coord::appends

Type Alias BuiltinTableAppendNotify

Source
pub type BuiltinTableAppendNotify = Pin<Box<dyn Future<Output = ()> + Send + Sync + 'static>>;
Expand description

Future that notifies when a builtin table write has completed.

Note: builtin table writes need to talk to persist, which can take 100s of milliseconds. This type allows you to execute a builtin table write, e.g. via BuiltinTableAppend::execute, and wait for it to complete, while other long running tasks are concurrently executing.

Aliased Type§

struct BuiltinTableAppendNotify {}