Changeset 16:d4953672269a
- Timestamp:
- Mar 13, 2008, 5:11:58 PM (14 years ago)
- Branch:
- default
- Convert:
- svn:b33ecbfc-034c-dc11-8662-000475d9059e/trunk@44
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wokkel/iwokkel.py
r15 r16 41 41 given in C{xs}. 42 42 43 This should setup C{self.xmlstream} and call L{connectionMade}.43 This should setup L{xmlstream} and call L{connectionMade}. 44 44 45 45 @type xs: L{XmlStream<twisted.words.protocols.jabber.XmlStream>} 46 46 """ 47 47 48 def connectionMade( self):48 def connectionMade(): 49 49 """ 50 50 Called after a connection has been established. … … 60 60 61 61 At this point, authentication was successful, and XML stanzas can be 62 exchanged over the XML stream C{self.xmlstream}. This method can be62 exchanged over the XML stream L{xmlstream}. This method can be 63 63 used to setup observers for incoming stanzas. 64 64 """ … … 68 68 The XML stream has been closed. 69 69 70 Subsequent use of C{self.parent.send} will result in data being queued70 Subsequent use of L{parent.send} will result in data being queued 71 71 until a new connection has been established. 72 72
Note: See TracChangeset
for help on using the changeset viewer.