Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what does synchronization mean?

would you please explain more about the meaning of synchronization?

like image 479
Johanna Avatar asked Jan 22 '23 17:01

Johanna


1 Answers

Synchronization is the way two or more threads can safely access shared resources without overwriting each other's work.

http://java.sun.com/docs/books/tutorial/essential/concurrency/sync.html

like image 95
Robert Harvey Avatar answered Feb 05 '23 11:02

Robert Harvey