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

widebase.stream.handler.cq.BlockLock.scala Maven / Gradle / Ivy

package widebase.stream.handler.cq

import scala.concurrent.Lock

/** Block locks.
 *
 * @author myst3r10n
 */
class BlockLock extends Lock {

  def waitOfUnlock = synchronized {

    if(!available)
      wait

  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy