コード例 #1
0
ファイル: http.py プロジェクト: KetothXupack/spyne
    def __init__(self, app, chunked=False,
                max_content_length=2 * 1024 * 1024,
                block_length=8 * 1024):
        ServerBase.__init__(self, app)

        self.chunked = chunked
        self.max_content_length = max_content_length
        self.block_length = block_length
コード例 #2
0
ファイル: zeromq.py プロジェクト: mangroovie/spyne
    def __init__(self, app, app_url, wsdl_url=None):
        ServerBase.__init__(self, app)

        self.app_url = app_url
        self.wsdl_url = wsdl_url

        self.zmq_socket = context.socket(zmq.REP)
        self.zmq_socket.bind(app_url)
コード例 #3
0
ファイル: zeromq.py プロジェクト: 66ru/spyne
    def __init__(self, app, app_url, wsdl_url=None):
        ServerBase.__init__(self, app)

        self.app_url = app_url
        self.wsdl_url = wsdl_url

        self.zmq_socket = context.socket(zmq.REP)
        self.zmq_socket.bind(app_url)
コード例 #4
0
ファイル: http.py プロジェクト: fmezas/spyne
    def __init__(self, app, chunked=False,
                max_content_length=2 * 1024 * 1024,
                block_length=8 * 1024):
        ServerBase.__init__(self, app)

        self.chunked = chunked
        self.max_content_length = max_content_length
        self.block_length = block_length
コード例 #5
0
    def __init__(self, db, app, consumer_id):
        ServerBase.__init__(self, app)

        self.session = sessionmaker(bind=db)()
        self.id = consumer_id

        if self.session.query(WorkerStatus).get(self.id) is None:
            self.session.add(WorkerStatus(worker_id=self.id))
            self.session.commit()
コード例 #6
0
ファイル: http.py プロジェクト: Bluehorn/spyne
    def __init__(self, app, chunked=False,
                max_content_length=2 * 1024 * 1024,
                block_length=8 * 1024):
        ServerBase.__init__(self, app)

        self._allowed_http_verbs = app.in_protocol.allowed_http_verbs

        self.chunked = chunked
        self.max_content_length = max_content_length
        self.block_length = block_length
コード例 #7
0
ファイル: queue.py プロジェクト: norox/spyne
    def __init__(self, db, app, consumer_id):
        ServerBase.__init__(self, app)

        self.session = sessionmaker(bind=db)()
        self.id = consumer_id

        worker_status = self.session.query(WorkerStatus).filter_by(worker_id=self.id).first()

        if worker_status is None:
            self.session.add(WorkerStatus(worker_id=self.id, task_id=0))
            self.session.commit()
コード例 #8
0
    def __init__(self,
                 app,
                 chunked=False,
                 max_content_length=2 * 1024 * 1024,
                 block_length=8 * 1024):
        ServerBase.__init__(self, app)

        self._allowed_http_verbs = app.in_protocol.allowed_http_verbs

        self.chunked = chunked
        self.max_content_length = max_content_length
        self.block_length = block_length
コード例 #9
0
ファイル: queue.py プロジェクト: 66ru/spyne
    def __init__(self, db, app, consumer_id):
        ServerBase.__init__(self, app)

        self.session = sessionmaker(bind=db)()
        self.id = consumer_id

        try:
            self.session.query(WorkerStatus) \
                          .filter_by(worker_id=self.id).one()
        except NoResultFound:
            self.session.add(WorkerStatus(worker_id=self.id, task_id=0))
            self.session.commit()
コード例 #10
0
    def __init__(self, db, app, consumer_id):
        ServerBase.__init__(self, app)

        self.session = sessionmaker(bind=db)()
        self.id = consumer_id


        worker_status = self.session.query(WorkerStatus) \
                          .filter_by(worker_id=self.id).first()

        if worker_status is None:
            self.session.add(WorkerStatus(worker_id=self.id, task_id=0))
            self.session.commit()
コード例 #11
0
    def __init__(self, app):
        ServerBase.__init__(self, app)

        self.service = _FunctionProxy(self, self.app)
        self.factory = Factory(self.app)
コード例 #12
0
ファイル: null.py プロジェクト: murilowlima/spyne
    def __init__(self, app):
        ServerBase.__init__(self, app)

        self.service = _FunctionProxy(self, self.app)
        self.factory = Factory(self.app)