Class t.p.p.TimeoutMixin:

Part of twisted.protocols.policies View Source View In Hierarchy

Known subclasses: twisted.mail.imap4.IMAP4Client, twisted.mail.imap4.IMAP4Server, twisted.mail.pop3.AdvancedPOP3Client, twisted.mail.pop3.POP3, twisted.mail.smtp.SMTP, twisted.mail.smtp.SMTPClient, twisted.protocols.ftp.FTP, twisted.protocols.postfix.PostfixTCPMapServer, twisted.web.http.HTTPChannel, twisted.web2.channel.http.HTTPChannel, twisted.web2.client.http.HTTPClientProtocol

Mixin for protocols which wish to timeout connections
Class VariablestimeOutThe number of seconds after which to timeout the connection.
Method callLater Undocumented
Method resetTimeout Reset the timeout count down
Method setTimeout Change the timeout period
Method __timedOut Undocumented
Method timeoutConnection Called when the connection times out.
def callLater(self, period, func): (source)
Undocumented
def resetTimeout(self): (source)
Reset the timeout count down
def setTimeout(self, period): (source)
Change the timeout period
ParametersperiodThe period, in seconds, to change the timeout to, or None to disable the timeout. (type: int or NoneType )
def __timedOut(self): (source)
Undocumented
def timeoutConnection(self): (source)
Called when the connection times out. Override to define behavior other than dropping the connection.
API Documentation for twisted, generated by pydoctor.