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

skinny.orm.feature.ConnectionPoolFeature.scala Maven / Gradle / Ivy

The newest version!
package skinny.orm.feature

import scalikejdbc._

/**
 * Provides ConnectionPool.
 */
trait ConnectionPoolFeature {

  /**
   * Returns connection pool name.
   *
   * @return name
   */
  def connectionPoolName: Any = ConnectionPool.DEFAULT_NAME

  /**
   * Returns connection pool.
   *
   * @return pool
   */
  def connectionPool: ConnectionPool = ConnectionPool(connectionPoolName)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy