Type Alias mz_adapter::coord::appends::BuiltinTableAppendNotify
source · pub type BuiltinTableAppendNotify = BoxFuture<'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 {}