All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.powerscala.property.backing.VolatileVariableBacking.scala Maven / Gradle / Ivy

The newest version!
package org.powerscala.property.backing

/**
 * VolatileVariableBacking utilizes a volatile var for the backing store.
 *
 * @author Matt Hicks 
 */
class VolatileVariableBacking[T] extends Backing[T] {
  @volatile
  private var v: T = _

  final def getValue = v

  final def setValue(value: T) {
    this.v = value
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy