f6e1fecdf8
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).
15 lines
534 B
Python
15 lines
534 B
Python
"""
|
|
SleekXMPP: The Sleek XMPP Library
|
|
Copyright (C) 2010 Nathanael C. Fritz
|
|
This file is part of SleekXMPP.
|
|
|
|
See the file LICENSE for copying permission.
|
|
"""
|
|
|
|
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
|
|
|
|
__all__ = ['Callback', 'Waiter', 'XMLCallback', 'XMLWaiter']
|