Skip to content

Commit

Permalink
Rename BasicSocketPool to UnlimitedSocketPool
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed May 30, 2019
1 parent 7f86b3b commit a901743
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/BasicSocketPool.php → src/UnlimitedSocketPool.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit a901743

Please sign in to comment.