August 2015
Intermediate to advanced
286 pages
5h 42m
English
Events are objects that are used for communication between threads. A thread waits for a signal while another thread outputs it. Basically, an event object manages an internal flag that can be set to true with the set() method and reset to false with the clear() method. The wait() method blocks until the flag is true.
To understand the thread synchronization through the event object, let's take a look again at the producer/consumer problem:
import time from threading import Thread, Event import random items = [] event = Event() class consumer(Thread): def __init__(self, items, event): Thread.__init__(self) self.items = items self.event = event def run(self): while True: time.sleep(2) self.event.wait() ...
Read now
Unlock full access