*/ namespace Asio; /** * Class TcpResolver * * Provides the ability to resolve a query to an array of endpoints. * Remote service should use TCP as transport protocol. * * @package Asio */ final class TcpResolver implements Resolver { /** * This class can only be instantiated using `Service::addTcpResolver()`. */ private function __construct() {} /** * {@inheritdoc} */ function resolve(string $host, string $service = '', callable $callback = null, $argument = null) {} /** * {@inheritdoc} */ function cancel() {} }