2016-08-24 06:20:25 +02:00
|
|
|
<?php declare(strict_types = 1);
|
2016-03-19 22:23:55 +01:00
|
|
|
|
|
|
|
namespace Amp\Dns;
|
|
|
|
|
2016-11-15 17:42:15 +01:00
|
|
|
use Interop\Async\Promise;
|
|
|
|
|
2016-03-19 22:23:55 +01:00
|
|
|
interface Resolver {
|
|
|
|
/**
|
2016-03-20 11:40:08 +01:00
|
|
|
* @see \Amp\Dns\resolve
|
2016-03-19 22:23:55 +01:00
|
|
|
*/
|
2016-11-15 17:42:15 +01:00
|
|
|
public function resolve(string $name, array $options = []): Promise;
|
2016-03-19 22:23:55 +01:00
|
|
|
|
|
|
|
/**
|
2016-03-20 11:40:08 +01:00
|
|
|
* @see \Amp\Dns\query
|
2016-03-19 22:23:55 +01:00
|
|
|
*/
|
2016-11-15 17:42:15 +01:00
|
|
|
public function query(string $name, $type, array $options = []): Promise;
|
2016-03-19 22:23:55 +01:00
|
|
|
}
|