summaryrefslogtreecommitdiff
path: root/examples/rpc_async.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-01-05 12:13:06 -0500
committerLance Stout <lancestout@gmail.com>2012-01-05 12:13:06 -0500
commit3a4e3d3f51f43de67d4249ed3a2e9c339c9c717a (patch)
treee6531dfaec1c411d4e66b1055e9044ca57c267be /examples/rpc_async.py
parent97378998a5f8c031444fd7a0c1b1007e9282df4d (diff)
downloadslixmpp-3a4e3d3f51f43de67d4249ed3a2e9c339c9c717a.tar.gz
slixmpp-3a4e3d3f51f43de67d4249ed3a2e9c339c9c717a.tar.bz2
slixmpp-3a4e3d3f51f43de67d4249ed3a2e9c339c9c717a.tar.xz
slixmpp-3a4e3d3f51f43de67d4249ed3a2e9c339c9c717a.zip
Update doc settings to new theme, add examples, use 1.0
Diffstat (limited to 'examples/rpc_async.py')
-rw-r--r--examples/rpc_async.py44
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