python多線程編程(7):線程間通訊

來源:互聯網
上載者:User

很多時候,線程之間會有互相通訊的需要。常見的情形是次要線程為主要線程執行特定的任務,在執行過程中需要不斷報告執行的進度情況。前面的條件變數同步已經涉及到了線程間的通訊(threading.Condition的notify方法)。更通用的方式是使用threading.Event對象。
threading.Event可以使一個線程等待其他線程的通知。其內建了一個標誌,初始值為False。線程通過wait()方法進入等待狀態,直到另一個線程調用set()方法將內建標誌設定為True時,Event通知所有等待狀態的線程恢複運行。還可以通過isSet()方法查詢Envent對象內建狀態的當前值。

舉例如下:

import threading
import random
import time

class MyThread(threading.Thread):
def __init__(self,threadName,event):
threading.Thread.__init__(self,name=threadName)
self.threadEvent = event

def run(self):
print "%s is ready" % self.name
self.threadEvent.wait()
print "%s run!" % self.name

sinal = threading.Event()
for i in range(10):
t = MyThread(str(i),sinal)
t.start()

sinal.set()
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.