SleekXMPP/sleekxmpp/test
Lance Stout 5f2fc67c40 Added option for iq.send to accept a callhandler.
The callback will be a stream level handler, and will not
execute in its own thread. If you must have a thread, have the
callback function raise a custom event, which can be processed
by another event handler, which may run in an individual thread,
like so:

def handle_reply(self, iq):
    self.event('custom_event', iq)

def do_long_operation_in_thread(self, iq):
    ...

self.add_event_handler('custom_event', self.do_long_operation_in_thread)

...take out already prepared iq stanza...
iq.send(callback=self.handle_reply)
2010-12-07 17:19:39 -05:00
..
__init__.py SleekTest may now run against a live stream. 2010-10-07 19:43:51 -04:00
livesocket.py Fixed some live stream test errors. 2010-11-17 15:45:16 -05:00
mocksocket.py SleekTest may now run against a live stream. 2010-10-07 19:43:51 -04:00
sleektest.py Added option for iq.send to accept a callhandler. 2010-12-07 17:19:39 -05:00