Buscar..


Sintaxis

  • objectToSynchronizeOn.synchronized { /* code to run */}
  • synchronized {/* code to run, can be suspended with wait */}

sincronizar en un objeto

synchronized es una construcción de concurrencia de bajo nivel que puede ayudar a evitar que múltiples hilos accedan a los mismos recursos. Introducción a la JVM utilizando el lenguaje Java .

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
}

En el caso de los object , podría sincronizarse en la clase del objeto, no en la instancia de singleton.

sincronizar implícitamente en este

 /* 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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow