-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Streamed SSR Response #2697
Merged
Merged
Streamed SSR Response #2697
Changes from 6 commits
Commits
Show all changes
59 commits
Select commit
Hold shift + click to select a range
199ca5e
yew::platform?
futursolo e6fd176
Stream Response.
futursolo a652578
Migrate example
futursolo bb41baa
Remove old implementation.
futursolo 5c5f9e0
Remove extra implementation.
futursolo fca682d
Prefer String instead of Cow.
futursolo 9f82906
Fix MSRV.
futursolo 3eb9f3b
Fix trybuild.
futursolo 89cce2f
Merge branch 'master' into platform
futursolo bcf4182
Optimise Memory Allocation.
futursolo ff0ad94
More optimisation.
futursolo e5b76a7
BufWriter.
futursolo d4b15f6
Fix tests.
futursolo 39f1878
Optimise BufWriter.
futursolo 511b1c8
Remove more allocations.
futursolo 7f2f46a
Merge branch 'master' into platform
futursolo 13827e9
Allow setting of buffer capacity.
futursolo 8b159fc
Fix capacity size.
futursolo 65a4c20
Fix capacity size.
futursolo 03e10a6
Remove unneeded const notation.
futursolo f8f198b
Fix macro tests.
futursolo 7c5c7bd
Merge branch 'master' into platform
futursolo 45d218c
Slightly optimises BufWriter committing logic.
futursolo 12c0e38
Optimise Implementation.
futursolo 49bbd55
Move BufWriter to a separate file.
futursolo c01fced
Merge branch 'master' into platform
futursolo c878adb
Additional Implementation Note.
futursolo 6811275
merge branch 'master' into platform
futursolo 52ee6cc
Merge branch 'master' into platform
futursolo 8694cc9
Merge branch 'master' into platform
futursolo b784c60
Merge branch 'master' into platform
futursolo 88085ac
Adjust API so it matches `std::channel::mpsc::channel`.
futursolo 08e3bad
Fix feature soundness.
futursolo 05d97da
Make a compatibility layer on channels.
futursolo 6904da4
Fix clippy.
futursolo 848f8f7
Fix feature soundness.
futursolo 64d2ee4
Fix CI.
futursolo 47caa52
Inlining.
futursolo f277d41
Add documentation.
futursolo 704f2a8
Punctuation.
futursolo dacdce8
Switch to tokio channel.
futursolo 901cffd
Remvoe pin-project.
futursolo 4511ffd
Fix feature soundness.
futursolo 318f1ef
Typo.
futursolo d656fc7
Move io to platform.
futursolo 6b4f31f
Tokio does not compile.
futursolo 8cc2a57
Fix workflow.
futursolo 4e03969
Restore wrongly removed docs.
futursolo 5f90233
Does tokio work?
futursolo a6a3423
Switch back to tokio.
futursolo ecbcaca
Remove pin-project.
futursolo 01494ce
Use cargo resolver 2.
futursolo 466bed4
Add panic notice.
futursolo 4855da4
Update documentation.
futursolo e5cd82c
Merge branch 'master' into platform
futursolo 0d477f4
Properties does not have to be send.
futursolo 9c36639
Fix capacity checking as pointed in the review.
futursolo ba23671
Implementation order.
futursolo 8462ec4
Update note.
futursolo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The MSRV has been updated to 1.60 due to the requirement of namespaced dependency.