Multithreaded API access: Difference between revisions

From Maria GDK Wiki
Jump to navigation Jump to search
(Created page with "== General considerations == Category:Creating applications")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
== General considerations ==
== General considerations ==
All access to the GDK API should be done from the main thread unless otherwise stated in this document


== Exceptions ==
=== Services ===
In general, GDK services can be called from threads other than the main thread. Note that not all services are concurrent, resulting in serialization/queuing of the calls.
=== Other ===


[[Category:Creating applications]]
[[Category:Creating applications]]

Latest revision as of 11:26, 26 April 2024

General considerations

All access to the GDK API should be done from the main thread unless otherwise stated in this document

Exceptions

Services

In general, GDK services can be called from threads other than the main thread. Note that not all services are concurrent, resulting in serialization/queuing of the calls.

Other