Interface t.i.i.IReactorArbitrary(Interface):

Part of twisted.internet.interfaces View Source View In Hierarchy

Known implementations: twisted.internet.default.PosixReactorBase, twisted.internet.iocpreactor.proactor.Proactor
No interface docstring
Method listenWith Start an instance of the given portType listening.
Method connectWith Start an instance of the given connectorType connecting.
def listenWith(portType, *args, **kw): (source)
Start an instance of the given portType listening.
ParametersportTypeThe object given by portType(*args, **kw) will be started listening. (type: type which implements IListeningPort )
Returnsan object which provides IListeningPort.
def connectWith(connectorType, *args, **kw): (source)
Start an instance of the given connectorType connecting.
ParametersconnectorTypeThe object given by connectorType(*args, **kw) will be started connecting. (type: type which implements IConnector )
ReturnsAn object which provides IConnector.
API Documentation for twisted, generated by pydoctor.