You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
I know its possible because Cordova offers a async API for native calls. The methods should return an IAsyncOperation which can be retrieved from a System.Thread.Task. The JavaScript will then return a promise instead of an instance of T.
The text was updated successfully, but these errors were encountered:
+1
This is critical as applications expect the queries to be async and when that is changed, things break. In addition, it leads to a very poor user experience when dealing with any non-trivial datasets, especially on mobile devices.
Please fix.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The WebSQL interface described as in the W3 specification (http://www.w3.org/TR/webdatabase/#asynchronous-database-api) is asynchronous. This plugin however is synchronous. This is unfortunately a major issue for the user experience.
I know its possible because Cordova offers a async API for native calls. The methods should return an IAsyncOperation which can be retrieved from a System.Thread.Task. The JavaScript will then return a promise instead of an instance of T.
The text was updated successfully, but these errors were encountered: