pub trait BlobUploadObserver: Send + Sync {
// Required method
fn on_blob_uploaded<'life0, 'life1, 'async_trait>(
&'life0 self,
file_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
Notified after a blob upload completes, for host-specific bookkeeping (e.g. transitioning a record from “uploading” to “cloud-only”).