pub trait BlobStore: Send + Sync {
// Required methods
fn put<'life0, 'async_trait>(
&'life0 self,
token: BlobToken,
bytes: Bytes,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn take<'life0, 'life1, 'async_trait>(
&'life0 self,
token: &'life1 BlobToken,
) -> Pin<Box<dyn Future<Output = Result<Bytes, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn len<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<usize, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
Simple blob store interface used for blob-backed flows.
In production this would map to a real data plane (shared memory, file, socket, etc). For now it is used for integration tests.