Exemplo n.º 1
0
    def __init__(self, url, app):
        ClientBase.__init__(self, url, app)

        self.service = Service(_RemoteProcedure, url, app)
Exemplo n.º 2
0
    def __init__(self, db, app):
        ClientBase.__init__(self, db, app)

        self.service = Service(RemoteProcedure, db, app)
Exemplo n.º 3
0
Arquivo: zeromq.py Projeto: rch/rpclib
    def __init__(self, url, app):
        ClientBase.__init__(self, url, app)

        self.service = Service(_RemoteProcedure, url, app)
Exemplo n.º 4
0
Arquivo: queue.py Projeto: rch/rpclib
    def __init__(self, db, app):
        ClientBase.__init__(self, db, app)

        self.service = Service(RemoteProcedure, db, app)