Scala Language
gesynchroniseerd
Zoeken…
Syntaxis
-
objectToSynchronizeOn.synchronized { /* code to run */}
-
synchronized {/* code to run, can be suspended with wait */}
synchroniseren op een object
synchronized
is een concurrency-construct op laag niveau dat kan helpen voorkomen dat meerdere threads toegang krijgen tot dezelfde bronnen. Introductie voor de JVM met behulp van de Java-taal .
anInstance.synchronized {
// code to run when the intristic lock on `anInstance` is acquired
// other thread cannot enter concurrently unless `wait` is called on `anInstance` to suspend
// other threads can continue of the execution of this thread if they `notify` or `notifyAll` `anInstance`'s lock
}
In het geval van object
s kan het synchroniseren met de klasse van het object, niet met de singleton-instantie.
impliciet hierop synchroniseren
/* within a class, def, trait or object, but not a constructor */
synchronized {
/* code to run when an intrisctic lock on `this` is acquired */
/* no other thread can get the this lock unless execution is suspended with
* `wait` on `this`
*/
}
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow