Primary interfaces for the twisted protocols collection.
Start here if you are looking to write a new protocol implementation for
Twisted Python. The Protocol class contains some introductory material.
Imported modules
|
|
from twisted.internet.interfaces import IProtocolFactory
from twisted.python import log
|
Classes
|
|
ClientFactory |
Subclass this to indicate that your protocol.Factory is only usable for clients.
|
Factory |
This is a factory which produces protocols.
|
FileWrapper |
A wrapper around a file-like object to make it behave as a Transport.
|
ProcessProtocol |
Processes have some additional methods besides receiving data.
|
Protocol |
This is the abstract superclass of all protocols.
|
ServerFactory |
Subclass this to indicate that your protocol.Factory is only usable for servers.
|
Transport |
I am a transport for bytes.
|
|
|