summaryrefslogtreecommitdiff
path: root/examples/rpc_async.py
blob: 0b6d1936f7601e287cde7c4ab20eacc49ae27977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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()