Python实现:生产者消费者模型(Producer Consumer Model)

Posted 愤怒的绿萝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python实现:生产者消费者模型(Producer Consumer Model)相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
#encoding:utf8

from Queue import Queue
import random,threading,time

#生产者类
class Producer(threading.Thread):
    def __init__(self, name,queue):
        threading.Thread.__init__(self, name=name)
        self.data=queue

    def run(self):
        for i in range(5):
            print("%s is producing %d to the queue!" % (self.getName(), i))
            self.data.put(i)
            time.sleep(random.randrange(10)/5)
        print("%s finished!" % self.getName())

#消费者类
class Consumer(threading.Thread):
    def __init__(self,name,queue):
        threading.Thread.__init__(self,name=name)
        self.data=queue
    def run(self):
        for i in range(5):
            val = self.data.get()
            print("%s is consuming. %d in the queue is consumed!" % (self.getName(),val))
            time.sleep(random.randrange(10))
        print("%s finished!" % self.getName())

def main():
    queue = Queue()
    producer = Producer(Producer,queue)
    consumer = Consumer(Consumer,queue)

    producer.start()
    consumer.start()

    #producer.join()
    #consumer.join()
    print All threads finished!

if __name__ == __main__:
    main()

 

以上是关于Python实现:生产者消费者模型(Producer Consumer Model)的主要内容,如果未能解决你的问题,请参考以下文章

Kotlin 协程Channel 通道 ③ ( CoroutineScope#produce 构造生产者协程 | CoroutineScope#actor 构造消费者协程 )

Kotlin 协程Channel 通道 ③ ( CoroutineScope#produce 构造生产者协程 | CoroutineScope#actor 构造消费者协程 )

Kotlin 协程Channel 通道 ③ ( CoroutineScope#produce 构造生产者协程 | CoroutineScope#actor 构造消费者协程 )

python之函数实现生产者消费者模型(开发模型)

11.python并发入门(part8 基于线程队列实现生产者消费者模型)

生产者消费者模型实现多线程异步交互