mirror of
https://github.com/danog/postgres.git
synced 2024-11-27 04:24:45 +01:00
47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Amp\Postgres;
|
|
|
|
use Amp\Promise;
|
|
|
|
class ConnectionPool extends AbstractPool {
|
|
const DEFAULT_MAX_CONNECTIONS = 100;
|
|
|
|
/** @var string */
|
|
private $connectionString;
|
|
|
|
/** @var int */
|
|
private $maxConnections;
|
|
|
|
/**
|
|
* @param string $connectionString
|
|
* @param int $maxConnections
|
|
*
|
|
* @throws \Error If $maxConnections is less than 1.
|
|
*/
|
|
public function __construct(string $connectionString, int $maxConnections = self::DEFAULT_MAX_CONNECTIONS) {
|
|
parent::__construct();
|
|
|
|
$this->connectionString = $connectionString;
|
|
|
|
$this->maxConnections = $maxConnections;
|
|
if ($this->maxConnections < 1) {
|
|
throw new \Error("Pool must contain at least one connection");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function createConnection(): Promise {
|
|
return connect($this->connectionString);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getMaxConnections(): int {
|
|
return $this->maxConnections;
|
|
}
|
|
}
|