Skip to content

Commit

Permalink
Update 07_How_to_exchange_objects_between_processes.rst (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bestporter committed May 2, 2022
1 parent 2885afb commit 9593e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapter3/07_How_to_exchange_objects_between_processes.rst
Expand Up @@ -130,7 +130,7 @@
|more|
------

队列还有一个 ``JoinaleQueue`` 子类,它有以下两个额外的方法:
队列还有一个 ``JoinableQueue`` 子类,它有以下两个额外的方法:

- ``task_done()``: 此方法意味着之前入队的一个任务已经完成,比如, ``get()`` 方法从队列取回item之后调用。所以此方法只能被队列的消费者调用。
- ``join()``: 此方法将进程阻塞,直到队列中的item全部被取出并执行。
Expand Down

0 comments on commit 9593e62

Please sign in to comment.