码迷,mamicode.com
首页 > 编程语言 > 详细

python线程的条件变量Condition的用法实例

时间:2020-01-18 14:43:30      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:示例   format   关联   cti   ogg   问题   port   一个   sage   

? Condition 对象就是条件变量,它总是与某种锁相关联,可以是外部传入的锁或是系统默认创建的锁。当几个条件变量共享一个锁时,你就应该自己传入一个锁。这个锁不需要你操心,Condition 类会管理它。

acquire() 和 release() 可以操控这个相关联的锁。其他的方法都必须在这个锁被锁上的情况下使用。wait() 会释放这个锁,阻塞本线程直到其他线程通过 notify() 或 notify_all() 来唤醒它。一旦被唤醒,这个锁又被 wait() 锁上。

? 经典的 consumer/producer 问题的代码示例为:

import threading
import time
import logging

logging.basicConfig(level=logging.DEBUG,
                    format='(%(threadName)-9s) %(message)s',)

def consumer(cv):
    logging.debug('Consumer thread started ...')
    with cv:
        logging.debug('Consumer waiting ...')
        cv.acquire()
        cv.wait()
        logging.debug('Consumer consumed the resource')
        cv.release()

def producer(cv):
    logging.debug('Producer thread started ...')
    with cv:
        cv.acquire()
        logging.debug('Making resource available')
        logging.debug('Notifying to all consumers')
        cv.notify()
        cv.release()

if __name__ == '__main__':
    condition = threading.Condition()
    cs1 = threading.Thread(name='consumer1', target=consumer, args=(condition,))
    #cs2 = threading.Thread(name='consumer2', target=consumer, args=(condition,state))
    pd = threading.Thread(name='producer', target=producer, args=(condition,))

    cs1.start()
    time.sleep(2)
    #cs2.start()
    #time.sleep(2)
    pd.start()

python线程的条件变量Condition的用法实例

标签:示例   format   关联   cti   ogg   问题   port   一个   sage   

原文地址:https://www.cnblogs.com/dylancao/p/12208923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!