Package frost.threads
- Lock
- A lock (mutex) which allows multiple threads to coordinate access to a shared resource.
- MessageQueue
- A queue which can be shared between multiple
Threads, allowing any of them to submit messages to or pull messages out of it. - Notifier
- A condition variable which helps multiple
Threads coordinate their scheduling. - ScopedLock
- An object which holds onto a
Lockas long as theScopedLockitself continues to exist. - Thread
- Represents a thread of execution within a program.