class IResolutionReceiver(Interface): (source)
Known implementations: twisted.internet._resolver.FirstOneWins
IResolutionReceiver receives the results of a hostname resolution in progress, initiated by an IHostnameResolver.| Present Since | |
| Twisted 17.1.0 |
| Method | addressResolved |
No summary |
| Method | resolutionBegan |
A hostname resolution began. |
| Method | resolutionComplete |
Resolution has completed; no further addresses will be relayed to IResolutionReceiver.addressResolved. |
IPv4Address or IPv6Address, but implementations of this interface should be lenient to other types being passed to this interface as well, for future-proofing.| Parameters | |
address:IAddress | An address object. |
IResolutionReceiver.addressResolved.