etebase_collection_manager_cache_load method

Pointer<EtebaseCollection> etebase_collection_manager_cache_load(
  1. Pointer<EtebaseCollectionManager> this_,
  2. Pointer<Void> cached,
  3. 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,
  );
}