etebase_fs_cache_collection_get method

Pointer<EtebaseCollection> etebase_fs_cache_collection_get(
  1. Pointer<EtebaseFileSystemCache> this_,
  2. Pointer<EtebaseCollectionManager> col_mgr,
  3. Pointer<Char> col_uid
)

Load a collection from cache

@param this_ the object handle @param col_mgr collection manager for the account @param col_uid the UID of the collection

Implementation

ffi.Pointer<EtebaseCollection> etebase_fs_cache_collection_get(
  ffi.Pointer<EtebaseFileSystemCache> this_,
  ffi.Pointer<EtebaseCollectionManager> col_mgr,
  ffi.Pointer<ffi.Char> col_uid,
) {
  return _etebase_fs_cache_collection_get(
    this_,
    col_mgr,
    col_uid,
  );
}