本文整理汇总了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
示例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)
示例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)