-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch to pinned channels. * Fix ServerRenderer so it's not blocked until the result is resolved. * Fix tests. * Remove unused SendError. * Revert channel-based BufWriter. * Removed unused fmt module. * Update docs. * Add safety comments, adjust borrowing designs. * Adjust oneshot as well. * Fix workflow temporarily. * Cell or UnsafeCell? * Update safety notice. * Should be sync. * Actually should be both. * Update packages/yew/src/platform/pinned/mpsc.rs Co-authored-by: Muhammad Hamza <[email protected]> Co-authored-by: Muhammad Hamza <[email protected]>
- Loading branch information
Showing
7 changed files
with
628 additions
and
4 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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//! Task synchronisation primitives for pinned tasks. | ||
//! | ||
//! This module provides task synchronisation for `!Send` futures. | ||
pub mod mpsc; | ||
pub mod oneshot; |
Oops, something went wrong.