コード例 #1
0
ファイル: test_threadPool.py プロジェクト: yutiansut/ilastik
def test_stop_stops_all_workers(pool: ThreadPool):
    pool.stop()
    for w in pool.workers:
        w.join()
コード例 #2
0
ファイル: testThreadPool.py プロジェクト: vibbits/lazyflow
def pool():
    p = ThreadPool(num_workers=4)
    yield p
    p.stop()