diff options
author | Nathan Fritz <nathan@andyet.net> | 2011-02-05 04:54:52 -0800 |
---|---|---|
committer | Nathan Fritz <nathan@andyet.net> | 2011-02-05 04:54:52 -0800 |
commit | 683f717cf756b6487c9dcdfcc0aee4923da7f7c9 (patch) | |
tree | 0a23b3fae5171f0b7bf62cea9d6c6ad3a66e5ea8 /examples/rpc_async.py | |
parent | 8dbe6f65462ec9b1a0506a00316415996f4d53d8 (diff) | |
parent | b68e7bed403924dc4ebf7294854d4892c48ce0ab (diff) | |
download | slixmpp-683f717cf756b6487c9dcdfcc0aee4923da7f7c9.tar.gz slixmpp-683f717cf756b6487c9dcdfcc0aee4923da7f7c9.tar.bz2 slixmpp-683f717cf756b6487c9dcdfcc0aee4923da7f7c9.tar.xz slixmpp-683f717cf756b6487c9dcdfcc0aee4923da7f7c9.zip |
fixed merge
Diffstat (limited to 'examples/rpc_async.py')
-rw-r--r-- | examples/rpc_async.py | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/examples/rpc_async.py b/examples/rpc_async.py new file mode 100644 index 00000000..0b6d1936 --- /dev/null +++ b/examples/rpc_async.py @@ -0,0 +1,44 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2011 Dann Martens + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.plugins.xep_0009.remote import Endpoint, remote, Remote, \ + ANY_ALL, Future +import time + +class Boomerang(Endpoint): + + def FQN(self): + return 'boomerang' + + @remote + def throw(self): + print "Duck!" + + + +def main(): + + session = Remote.new_session('kangaroo@xmpp.org/rpc', '*****') + + session.new_handler(ANY_ALL, Boomerang) + + boomerang = session.new_proxy('kangaroo@xmpp.org/rpc', Boomerang) + + callback = Future() + + boomerang.async(callback).throw() + + time.sleep(10) + + session.close() + + + +if __name__ == '__main__': + main() +
\ No newline at end of file |