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


Python eventloop.TIMEOUT_PRECISION屬性代碼示例

本文整理匯總了Python中shadowsocks.eventloop.TIMEOUT_PRECISION屬性的典型用法代碼示例。如果您正苦於以下問題:Python eventloop.TIMEOUT_PRECISION屬性的具體用法?Python eventloop.TIMEOUT_PRECISION怎麽用?Python eventloop.TIMEOUT_PRECISION使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在shadowsocks.eventloop的用法示例。


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

示例1: update_activity

# 需要導入模塊: from shadowsocks import eventloop [as 別名]
# 或者: from shadowsocks.eventloop import TIMEOUT_PRECISION [as 別名]
def update_activity(self, handler, data_len):
        if data_len and self._stat_callback:
            self._stat_callback(self._listen_port, data_len)

        # set handler to active
        now = int(time.time())
        if now - handler.last_activity < eventloop.TIMEOUT_PRECISION:
            # thus we can lower timeout modification frequency
            return
        handler.last_activity = now
        index = self._handler_to_timeouts.get(hash(handler), -1)
        if index >= 0:
            # delete is O(n), so we just set it to None
            self._timeouts[index] = None
        length = len(self._timeouts)
        self._timeouts.append(handler)
        self._handler_to_timeouts[hash(handler)] = length 
開發者ID:ntfreedom,項目名稱:neverendshadowsocks,代碼行數:19,代碼來源:tcprelay.py

示例2: update_activity

# 需要導入模塊: from shadowsocks import eventloop [as 別名]
# 或者: from shadowsocks.eventloop import TIMEOUT_PRECISION [as 別名]
def update_activity(self, handler):
        # set handler to active
        now = int(time.time())
        if now - handler.last_activity < eventloop.TIMEOUT_PRECISION:
            # thus we can lower timeout modification frequency
            return
        handler.last_activity = now
        index = self._handler_to_timeouts.get(hash(handler), -1)
        if index >= 0:
            # delete is O(n), so we just set it to None
            self._timeouts[index] = None
        length = len(self._timeouts)
        self._timeouts.append(handler)
        self._handler_to_timeouts[hash(handler)] = length 
開發者ID:shadowsocksr-backup,項目名稱:shadowsocksr,代碼行數:16,代碼來源:udprelay.py


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