Multithreaded API access: Difference between revisions

From Maria GDK Wiki
Jump to navigation Jump to search
()
()
 
Line 4: Line 4:
== Exceptions ==
== Exceptions ==
=== Services ===
=== 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 ===
=== 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