pub trait NamedObjectCacheSyncClient: Sync + Send + 'static {
    fn diff_objects<'life0, 'life1, 'async_trait>(
        &'life0 self,
        list: &'life1 Vec<SyncObjectData>
    ) -> Pin<Box<dyn Future<Output = BuckyResult<Vec<bool>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; fn query_object<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        object_id: &'life1 ObjectId,
        update_time: &'life2 u64
    ) -> Pin<Box<dyn Future<Output = BuckyResult<bool>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors