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

spice.http.client.JSConnectionPool.scala Maven / Gradle / Ivy

The newest version!
package spice.http.client

import spice.ajax.AjaxManager

import scala.concurrent.duration.FiniteDuration

case class JSConnectionPool(maxIdleConnections: Int = ConnectionPool.maxIdleConnections,
                            keepAlive: FiniteDuration = ConnectionPool.keepAlive) extends ConnectionPool {
  lazy val manager = new AjaxManager(maxIdleConnections)

  override def idle: Int = 0
  override def active: Int = manager.queue + manager.running
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy