-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed Threaded immutability shitfest
Volatile and Threaded are now functionally identical. The performance impact of reading volatiles is now minimized. Threaded takes a small performance hit to be able to expose the same functionality as Volatile without immutability headaches, but the performance loss is far smaller than that of Volatile. Now, the big performance hits only come into play when writing Threaded objects as members (since this causes a property sync on next read/write). However, most of the time this won't happen, meaning that Threaded reads will experience only 1 lock.
- Loading branch information
Showing
1 changed file
with
78 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters