Skip to content
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

Add UnfoldResource ValueTask Stage and DSL methods #7028

Open
wants to merge 25 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5c3c94a
Add UnfoldResource ValueTask Stage and DSL methods
to11mtm Dec 27, 2023
b0969f8
Pool Continuations on ValueTasks
to11mtm Dec 31, 2023
f4725aa
Add SelectValueTaskAsync
to11mtm Dec 31, 2023
9d87f8b
UnfoldValueTaskAsync, clean up other ops
to11mtm Jan 1, 2024
7beabc3
SelectValueTaskAsync Fixes, Benchmarks
to11mtm Jan 7, 2024
1971702
More SlimResult, Standardize patterns
to11mtm Jan 7, 2024
0471a58
Consolidate and simplify pooling for simple cases. Probably many oppo…
to11mtm Feb 21, 2024
ed982eb
Fix derp on UnfoldAsync from bench local playtime
to11mtm Feb 21, 2024
6b869db
Improve benchmark names
to11mtm Feb 23, 2024
c1598c0
undo AsyncEnumerable change for now.
to11mtm Feb 23, 2024
3e4518b
API Docs
to11mtm Feb 23, 2024
026ce51
Update Stream docs
to11mtm Feb 23, 2024
14eb3eb
Fix doc linting
to11mtm Feb 23, 2024
a252f8c
Add FlowSelectValueTaskAsyncSpec
to11mtm Mar 3, 2024
1a1d428
Optimize SlimResult.ForSuccess codegen
to11mtm Mar 3, 2024
12602da
Add UnfoldResourceValueTaskAsyncSourceSpec
to11mtm Mar 3, 2024
8b7856a
Use correct Reactive Streams Exception.
to11mtm Mar 3, 2024
50bec19
Fix using derp
to11mtm Mar 3, 2024
a2a650c
APIDocs
to11mtm Mar 3, 2024
973c8b6
Do some props and proj voodoo to try to fix weird linux build issue
to11mtm Mar 3, 2024
827d76e
ApiDocs for framework
to11mtm Mar 3, 2024
25f0501
Merge branch 'dev' into streams-valuetask-unfoldresource
to11mtm Mar 3, 2024
125771a
Make TaskHelperExts internal in Akka streams
to11mtm Mar 4, 2024
aff7e32
Maybe don't do 471 on non nt?
to11mtm Mar 4, 2024
cfbab88
Merge branch 'dev' into streams-valuetask-unfoldresource
to11mtm Mar 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix doc linting
to11mtm committed Feb 23, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 14eb3eb3b7317faed4952aee0847fbf911c12f39
2 changes: 0 additions & 2 deletions docs/articles/streams/builtinstages.md
Original file line number Diff line number Diff line change
@@ -121,7 +121,6 @@ Just like ``UnfoldAsync``, but the fold function returns a ``ValueTask``, with i

**completes** when the task returned by the unfold function completes with an null value


### Empty

Complete right away without ever emitting any elements. Useful when you have to provide a source to
@@ -209,7 +208,6 @@ Functions return ``Task`` to achieve asynchronous processing

Like ``UnfoldResourceAsync`` but takes ``ValueTask`` Functions instead, with amortization of allocations for the main read stage.


**emits** when there is demand and ``ValueTask`` from read function returns value

**completes** when ``ValueTask`` from read function returns ``None``
Loading