etebase_fs_cache_item_set method

int etebase_fs_cache_item_set(
  1. Pointer<EtebaseFileSystemCache> this_,
  2. Pointer<EtebaseItemManager> item_mgr,
  3. Pointer<Char> col_uid,
  4. Pointer<EtebaseItem> item,
)

Save an item to cache

@param this_ the object handle @param item_mgr item manager for the parent collection @param col_uid the UID of the parent collection @param item the item to be saved

Implementation

int etebase_fs_cache_item_set(
  ffi.Pointer<EtebaseFileSystemCache> this_,
  ffi.Pointer<EtebaseItemManager> item_mgr,
  ffi.Pointer<ffi.Char> col_uid,
  ffi.Pointer<EtebaseItem> item,
) {
  return _etebase_fs_cache_item_set(
    this_,
    item_mgr,
    col_uid,
    item,
  );
}