etebase_fetch_options_set_iterator method

void etebase_fetch_options_set_iterator(
  1. Pointer<EtebaseFetchOptions> this_,
  2. Pointer<Char> iterator
)

The current iterator to start from (when iterating lists)

@param this_ the object handle @param iterator the iterator to start from

Implementation

void etebase_fetch_options_set_iterator(
  ffi.Pointer<EtebaseFetchOptions> this_,
  ffi.Pointer<ffi.Char> iterator,
) {
  return _etebase_fetch_options_set_iterator(
    this_,
    iterator,
  );
}