summaryrefslogtreecommitdiff
path: root/examples/rpc_client_side.py
diff options
context:
space:
mode:
authorDann Martens <me@dannmartens.com>2011-01-13 11:58:20 +0100
committerDann Martens <me@dannmartens.com>2011-01-13 11:58:20 +0100
commit2e6c27f665d04f9132cbf845175d050e92aa0882 (patch)
treed8ec86def68aff774c41235f99939c1f030f5741 /examples/rpc_client_side.py
parent0a3a7b5a70dda56ffae4e85dc161b95072d3f085 (diff)
downloadslixmpp-2e6c27f665d04f9132cbf845175d050e92aa0882.tar.gz
slixmpp-2e6c27f665d04f9132cbf845175d050e92aa0882.tar.bz2
slixmpp-2e6c27f665d04f9132cbf845175d050e92aa0882.tar.xz
slixmpp-2e6c27f665d04f9132cbf845175d050e92aa0882.zip
Added examples.
Diffstat (limited to 'examples/rpc_client_side.py')
-rw-r--r--examples/rpc_client_side.py53
1 files changed, 53 insertions, 0 deletions
diff --git a/examples/rpc_client_side.py b/examples/rpc_client_side.py
new file mode 100644
index 00000000..ca1084f0
--- /dev/null
+++ b/examples/rpc_client_side.py
@@ -0,0 +1,53 @@
+"""
+ 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
+import threading
+import time
+
+class Thermostat(Endpoint):
+
+ def FQN(self):
+ return 'thermostat'
+
+ def __init(self, initial_temperature):
+ self._temperature = initial_temperature
+ self._event = threading.Event()
+
+ @remote
+ def set_temperature(self, temperature):
+ return NotImplemented
+
+ @remote
+ def get_temperature(self):
+ return NotImplemented
+
+ @remote(False)
+ def release(self):
+ return NotImplemented
+
+
+
+def main():
+
+ session = Remote.new_session('operator@xmpp.org/rpc', '*****')
+
+ thermostat = session.new_proxy('thermostat@xmpp.org/rpc', Thermostat)
+
+ print("Current temperature is %s" % thermostat.get_temperature())
+
+ thermostat.set_temperature(20)
+
+ time.sleep(10)
+
+ session.close()
+
+if __name__ == '__main__':
+ main()
+ \ No newline at end of file