From a90174396495659c9bb1cb01927617151f6119c2 Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Thu, 30 May 2019 15:30:28 +0200 Subject: [PATCH] Rename BasicSocketPool to UnlimitedSocketPool --- src/{BasicSocketPool.php => UnlimitedSocketPool.php} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) rename src/{BasicSocketPool.php => UnlimitedSocketPool.php} (98%) diff --git a/src/BasicSocketPool.php b/src/UnlimitedSocketPool.php similarity index 98% rename from src/BasicSocketPool.php rename to src/UnlimitedSocketPool.php index 2dda110..68a1fc0 100644 --- a/src/BasicSocketPool.php +++ b/src/UnlimitedSocketPool.php @@ -12,7 +12,10 @@ use League\Uri; use function Amp\call; -final class BasicSocketPool implements SocketPool +/** + * SocketPool implementation that doesn't impose any limits on concurrent open connections. + */ +final class UnlimitedSocketPool implements SocketPool { private const ALLOWED_SCHEMES = [ 'tcp' => null,