<?php
namespace Yurun\Util\YurunHttp\Handler\Contract;
interface IConnectionManager
{
public function getConnection($host, $port, $ssl);
public function removeConnection($host, $port, $ssl);
public function closeConnection($host, $port, $ssl);
public function createConnection($host, $port, $ssl);
public function close();
}