etebase_fs_cache_collection_set method

int etebase_fs_cache_collection_set(
  1. Pointer<EtebaseFileSystemCache> this_,
  2. Pointer<EtebaseCollectionManager> col_mgr,
  3. Pointer<EtebaseCollection> col
)

Save a collection to cache

@param this_ the object handle @param col_mgr collection manager for the account @param col the collection to be saved

Implementation

int etebase_fs_cache_collection_set(
  ffi.Pointer<EtebaseFileSystemCache> this_,
  ffi.Pointer<EtebaseCollectionManager> col_mgr,
  ffi.Pointer<EtebaseCollection> col,
) {
  return _etebase_fs_cache_collection_set(
    this_,
    col_mgr,
    col,
  );
}