forked from python-trio/trio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
New and improved APIs for inter-task communication: | ||
:class:`trio.abc.SendChannel`, :class:`trio.abc.ReceiveChannel`, and | ||
:func:`trio.open_memory_channel` (which replaces ``trio.Queue``). This | ||
interface uses separate "send" and "receive" objects, for consistency | ||
with other communication interfaces like :class:`trio.Stream`. Also, | ||
the two objects can now be closed individually, making it much easier | ||
to gracefully shut down a channel. Also, check out the nifty ``clone`` | ||
API to make it easy to manage fan-in scenarios. Also, the API has been | ||
written to allow for future channel-like objects that send objects | ||
across process boundaries. Also, it supports unbounded buffering if | ||
you really need it. Also, help I can't stop writing also. See | ||
:ref:`channels` for more details. | ||
interface uses separate "send" and "receive" methods, for consistency | ||
with other communication interfaces like :class:`~trio.abc.Stream`. | ||
Also, the two objects can now be closed individually, making it much | ||
easier to gracefully shut down a channel. Also, check out the nifty | ||
``clone`` API to make it easy to manage fan-in scenarios. Also, the | ||
API has been written to allow for future channel-like objects that | ||
send objects across process boundaries. Also, it supports unbounded | ||
buffering if you really need it. Also, help I can't stop writing also. | ||
See :ref:`channels` for more details. |