當前位置: 首頁>>代碼示例>>Python>>正文


Python websocket.WampWebSocketClientProtocol類代碼示例

本文整理匯總了Python中autobahn.twisted.websocket.WampWebSocketClientProtocol的典型用法代碼示例。如果您正苦於以下問題:Python WampWebSocketClientProtocol類的具體用法?Python WampWebSocketClientProtocol怎麽用?Python WampWebSocketClientProtocol使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了WampWebSocketClientProtocol類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: connectionLost

         def connectionLost(self, reason):
            WampWebSocketClientProtocol.connectionLost(self, reason)
            self.factory.proto = None

            log.msg("Worker {}: Process connection gone ({})".format(self._pid, reason.value))

            if isinstance(reason.value, ProcessTerminated):
               if not ready.called:
                  ## the worker was never ready in the first place ..
                  ready.errback(reason)
               else:
                  ## the worker _did_ run (was ready before), but now exited with error
                  if not exit.called:
                     exit.errback(reason)
                  else:
                     log.msg("FIXME: unhandled code path (1) in WorkerClientProtocol.connectionLost", reason.value)
            elif isinstance(reason.value, ProcessDone) or isinstance(reason.value, ConnectionDone):
               ## the worker exited cleanly
               if not exit.called:
                  exit.callback()
               else:
                  log.msg("FIXME: unhandled code path (2) in WorkerClientProtocol.connectionLost", reason.value)
            else:
               ## should not arrive here
               log.msg("FIXME: unhandled code path (3) in WorkerClientProtocol.connectionLost", reason.value)
開發者ID:rogererens,項目名稱:crossbar,代碼行數:25,代碼來源:node.py

示例2: connectionLost

    def connectionLost(self, reason):
        self.log.warn("Process connection gone: {reason}", reason=reason.value)

        WampWebSocketClientProtocol.connectionLost(self, reason)
        self.factory.proto = None

        if isinstance(reason.value, ProcessTerminated):
            if not self.factory._on_ready.called:
                # the worker was never ready in the first place ..
                self.factory._on_ready.errback(reason)
            else:
                # the worker _did_ run (was ready before), but now exited with error
                if not self.factory._on_exit.called:
                    self.factory._on_exit.errback(reason)
                else:
                    self.log.error("unhandled code path (1) in WorkerClientProtocol.connectionLost: {reason}", reason=reason.value)
        elif isinstance(reason.value, ProcessDone) or isinstance(reason.value, ConnectionDone):
            # the worker exited cleanly
            if not self.factory._on_exit.called:
                self.factory._on_exit.callback(None)
            else:
                self.log.error("unhandled code path (2) in WorkerClientProtocol.connectionLost: {reason}", reason=reason.value)
        else:
            # should not arrive here
            self.log.error("unhandled code path (3) in WorkerClientProtocol.connectionLost: {reason}", reason=reason.value)
開發者ID:RaitoBezarius,項目名稱:crossbar,代碼行數:25,代碼來源:native.py

示例3: connectionMade

    def connectionMade(self):
        WampWebSocketClientProtocol.connectionMade(self)
        self._pid = self.transport.pid
        self.factory.proto = self

        # native workers are implicitly trusted
        self._authid = u'dummy'
        self._authrole = u'trusted'
        self._authmethod = u'trusted'

        # FIXME
        self._transport_info = None
開發者ID:cosmospham,項目名稱:crossbar,代碼行數:12,代碼來源:native.py

示例4: connectionMade

    def connectionMade(self):
        WampWebSocketClientProtocol.connectionMade(self)
        self._pid = self.transport.pid
        self.factory.proto = self

        # native workers are implicitly trusted
        self._authid = u'crossbar.process.{}'.format(self._pid)
        self._authrole = self.factory._authrole

        # the worker is actively spawned by the node controller,
        # and we talk over the pipes that were create during
        # process creation. this established implicit trust.
        self._authmethod = u'trusted'

        # the trust is established implicitly by the way the
        # the client (worker) is created
        self._authprovider = u'programcode'

        # FIXME / CHECKME
        self._cbtid = None
        self._transport_info = None
開發者ID:crossbario,項目名稱:crossbar,代碼行數:21,代碼來源:native.py

示例5: onMessage

 def onMessage(self, payload, isBinary):
    self.rxcnt += 1
    print("< : {0:>3} : {1:<20} : {2}".format(self.rxcnt, Klass.__name__, payload))
    WampWebSocketClientProtocol.onMessage(self, payload, isBinary)
開發者ID:BigSab,項目名稱:AutobahnPython,代碼行數:4,代碼來源:_test_component.py

示例6: sendMessage

 def sendMessage(self, payload, isBinary):
    self.txcnt += 1
    print("> : {0:>3} : {1:<20} : {3}".format(self.txcnt, Klass.__name__, payload))
    WampWebSocketClientProtocol.sendMessage(self, payload, isBinary)
開發者ID:BigSab,項目名稱:AutobahnPython,代碼行數:4,代碼來源:_test_component.py

示例7: onOpen

 def onOpen(self):
    self.txcnt = 0
    self.rxcnt = 0
    WampWebSocketClientProtocol.onOpen(self)
開發者ID:BigSab,項目名稱:AutobahnPython,代碼行數:4,代碼來源:_test_component.py

示例8: onMessage

 def onMessage(self, bytes, isBinary):
    self.rxcnt += 1
    print("< : {:>3} : {:<20} : {}".format(self.rxcnt, Klass.__name__, bytes))
    WampWebSocketClientProtocol.onMessage(self, bytes, isBinary)
開發者ID:timkrentz,項目名稱:SunTracker,代碼行數:4,代碼來源:_test_component.py

示例9: connectionMade

 def connectionMade(self):
     WampWebSocketClientProtocol.connectionMade(self)
     self._pid = self.transport.pid
     self.factory.proto = self
開發者ID:josephwinston,項目名稱:crossbar,代碼行數:4,代碼來源:native.py


注:本文中的autobahn.twisted.websocket.WampWebSocketClientProtocol類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。