Part of twisted.internet.interfaces View Source View In Hierarchy
Known implementations: twisted.internet.posixbase.PosixReactorBase
| Method | listenWith | Start an instance of the given portType listening. |
| Method | connectWith | Start an instance of the given connectorType
connecting. |
portType listening.| Parameters | portType | The object given by portType(*args, **kw) will be started
listening.
(type: type which implements IListeningPort
) |
| Returns | an object which provides IListeningPort.
| |
connectorType
connecting.| Parameters | connectorType | The object given by connectorType(*args, **kw) will be started
connecting.
(type: type which implements IConnector
) |
| Returns | An object which provides IConnector.
| |