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

com.twitter.concurrent.AsyncMutex.scala Maven / Gradle / Ivy

The newest version!
package com.twitter.concurrent

class AsyncMutex private (maxWaiters: Option[Int]) extends AsyncSemaphore(1, maxWaiters) {
  def this() = this(None)
  def this(maxWaiters: Int) = this(Some(maxWaiters))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy