Perhaps a silly question, but is there any common naming convention for a class that provides thread-safe operations, other than ThreadSafeFoo
? This is most explicit and works nicely, but I figured I'd ask if there are any single-word synonyms which represent the notion of thread safety ("Safe", "Locking"?), or if there's anything shorter that is commonly used?
Asked
Active
Viewed 700 times
3

jwalk
- 1,120
- 11
- 27
-
3See: http://stackoverflow.com/questions/17166268/naming-general-purpose-thread-safe-data-structures – Martin Ba Jun 18 '13 at 18:47
2 Answers
1
I think Concurrent...
is a good choice. It describes very well the usecase in which it should be used without saying to much about technical details..

Markus Hettich
- 544
- 6
- 12