You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
743 B
743 B
Threading
The Open Screen Library is single-threaded; all of its code is intended to be run on a single sequence, with a few exceptions noted below.
A library client must invoke all library APIs on the same sequence that is used to run tasks on the client's TaskRunner implementation.
Exceptions
- The trace logging framework is thread-safe.
- The TaskRunner itself is thread-safe.
- The POSIX platform implementation starts a network thread, and handles interactions between that thread and the TaskRunner internally.