We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need the API for begin_write_async and commit_async exposed via the C API.
begin_write_async
commit_async
The text was updated successfully, but these errors were encountered:
I can have a look..
Sorry, something went wrong.
@nirinchev is this what you need exposed? Realm::async_begin_transaction Realm::async_commit_transaction
Realm::async_begin_transaction
Realm::async_commit_transaction
Yes and we probably need to modify realm_is_writable to something like (*realm)->is_in_transaction() || (*realm)->is_in_async_transaction();
realm_is_writable
(*realm)->is_in_transaction() || (*realm)->is_in_async_transaction();
Oh, we also need async_cancel_transaction.
async_cancel_transaction
nicola-cab
Successfully merging a pull request may close this issue.
We need the API for
begin_write_async
andcommit_async
exposed via the C API.The text was updated successfully, but these errors were encountered: