Add Collector stanza handler class.

This style of handler is necessary for capturing result sets from
queries that use multiple messages to send the results instead of
in a single result stanza. Notably, XEP-0313 (MAM).
This commit is contained in:
Lance Stout
2012-09-25 20:18:30 -07:00
parent 94e8b2becf
commit f6e1fecdf8
2 changed files with 67 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
"""
from sleekxmpp.xmlstream.handler.callback import Callback
from sleekxmpp.xmlstream.handler.collector import Collector
from sleekxmpp.xmlstream.handler.waiter import Waiter
from sleekxmpp.xmlstream.handler.xmlcallback import XMLCallback
from sleekxmpp.xmlstream.handler.xmlwaiter import XMLWaiter