etebase_collection_manager_cache_load method
Pointer<EtebaseCollection>
etebase_collection_manager_cache_load(
- Pointer<
EtebaseCollectionManager> this_, - Pointer<
Void> cached, - int cached_size
Load and return a cached collection object from a byte buffer
@param this_ the object handle
@param cached the byte buffer holding the cached collection obtained using cache_save
@param cached_size size of the buffer
Implementation
ffi.Pointer<EtebaseCollection> etebase_collection_manager_cache_load(
ffi.Pointer<EtebaseCollectionManager> this_,
ffi.Pointer<ffi.Void> cached,
int cached_size,
) {
return _etebase_collection_manager_cache_load(
this_,
cached,
cached_size,
);
}