class documentation

class _FakePort:

Constructor: _FakePort(hostAddress)

Implements interfaces: twisted.internet.interfaces.IListeningPort

View In Hierarchy

A fake IListeningPort to be used in tests.

Method __init__ No summary
Method getHost Fake IListeningPort.getHost that returns our IAddress.
Method startListening Fake IListeningPort.startListening that doesn't do anything.
Method stopListening Fake IListeningPort.stopListening that doesn't do anything.
Instance Variable _hostAddress The IAddress this IListeningPort is pretending to be listening on.
def __init__(self, hostAddress):
Parameters
hostAddressAn IAddress this IListeningPort should pretend to be listening on.
def startListening(self):
def stopListening(self):
_hostAddress =

The IAddress this IListeningPort is pretending to be listening on.