예제 #1
0
파일: zeromq.py 프로젝트: mfkaptan/spyne
    def __init__(self, url, app):
        ClientBase.__init__(self, url, app)

        self.service = Service(_RemoteProcedure, url, app)
예제 #2
0
    def __init__(self, db, app):
        ClientBase.__init__(self, db, app)

        self.service = Service(RemoteProcedure, db, app)
예제 #3
0
파일: queue.py 프로젝트: norox/spyne
    def __init__(self, db, app):
        ClientBase.__init__(self, db, app)

        self.service = Service(RemoteProcedure, db, app)
예제 #4
0
파일: __init__.py 프로젝트: 66ru/spyne
    def __init__(self, url, app):
        ClientBase.__init__(self, url, app)

        self.service = Service(_RemoteProcedure, url, app)