当前位置: 首页>>代码示例>>Python>>正文


Python Queue._put方法代码示例

本文整理汇总了Python中six.moves.queue.Queue._put方法的典型用法代码示例。如果您正苦于以下问题:Python Queue._put方法的具体用法?Python Queue._put怎么用?Python Queue._put使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在six.moves.queue.Queue的用法示例。


在下文中一共展示了Queue._put方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _put_and_notify

# 需要导入模块: from six.moves.queue import Queue [as 别名]
# 或者: from six.moves.queue.Queue import _put [as 别名]
 def _put_and_notify(self):
     with self.not_empty:
         while self.delayed:
             when, item = heapq.heappop(self.delayed)
             if when <= time.time():
                 Queue._put(self, item)
                 self.not_empty.notify()
             else:
                 heapq.heappush(self.delayed, (when, item))
                 break
开发者ID:RAMSProject,项目名称:sideboard,代码行数:12,代码来源:_threads.py

示例2: _put

# 需要导入模块: from six.moves.queue import Queue [as 别名]
# 或者: from six.moves.queue.Queue import _put [as 别名]
 def _put(self, item):
     delay, item = item
     if delay:
         if self.task.running:
             heapq.heappush(self.delayed, (time.time() + delay, item))
         else:
             message = 'TimeDelayQueue.put called with a delay parameter without background task having been started'
             log.warning(message)
             warn(message)
     else:
         Queue._put(self, item)
开发者ID:RAMSProject,项目名称:sideboard,代码行数:13,代码来源:_threads.py

示例3: _put

# 需要导入模块: from six.moves.queue import Queue [as 别名]
# 或者: from six.moves.queue.Queue import _put [as 别名]
    def _put(self, item):
        if item in self._seen:
            self._discards += 1

            # Handle
            if self.silent:
                return
            else:
                raise Duplicate

        Queue._put(self, item)
        self._seen.add(item)
开发者ID:pandasasa,项目名称:sparts,代码行数:14,代码来源:collections.py


注:本文中的six.moves.queue.Queue._put方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。