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
Thread
s, allowing any of them to submit messages to or pull messages out of it. - Notifier
- A condition variable which helps multiple
Thread
s coordinate their scheduling. - ScopedLock
- An object which holds onto a
Lock
as long as theScopedLock
itself continues to exist. - Thread
- Represents a thread of execution within a program.