etebase_fetch_options_set_prefetch method

void etebase_fetch_options_set_prefetch(
  1. Pointer<EtebaseFetchOptions> this_,
  2. int prefetch
)

How much data to prefetech

@param this_ the object handle @param prefetch the prefetch option to set

Implementation

void etebase_fetch_options_set_prefetch(
  ffi.Pointer<EtebaseFetchOptions> this_,
  int prefetch,
) {
  return _etebase_fetch_options_set_prefetch(
    this_,
    prefetch,
  );
}