Zomp.SyncMethodGenerator
0.1.13-alpha
See the version list below for details.
dotnet add package Zomp.SyncMethodGenerator --version 0.1.13-alpha
NuGet\Install-Package Zomp.SyncMethodGenerator -Version 0.1.13-alpha
<PackageReference Include="Zomp.SyncMethodGenerator" Version="0.1.13-alpha" />
<PackageVersion Include="Zomp.SyncMethodGenerator" Version="0.1.13-alpha" />
<PackageReference Include="Zomp.SyncMethodGenerator" />
paket add Zomp.SyncMethodGenerator --version 0.1.13-alpha
#r "nuget: Zomp.SyncMethodGenerator, 0.1.13-alpha"
#:package Zomp.SyncMethodGenerator@0.1.13-alpha
#addin nuget:?package=Zomp.SyncMethodGenerator&version=0.1.13-alpha&prerelease
#tool nuget:?package=Zomp.SyncMethodGenerator&version=0.1.13-alpha&prerelease
Sync Method Generator
This .NET source generator produces a sync method from an async one.
Use cases
- A library which exposes both sync and async version of a method
- An application has to process two kinds of data in the same way:
- Large data from I/O which cannot be stored in memory before processing: Original async method
- Small sample of data in memory, usually a sample of the larger data: Generated sync method
How it works
Add CreateSyncVersionAttribute to your async method in your partial class
[Zomp.SyncMethodGenerator.CreateSyncVersion]
static async Task WriteAsync(ReadOnlyMemory<byte> buffer, Stream stream,
CancellationToken ct)
=> await stream.WriteAsync(buffer, ct).ConfigureAwait(true);
And it will generate a sync version of the method:
static void Write(ReadOnlySpan<byte> buffer, Stream stream)
=> stream.Write(buffer);
A list of changes applied to the new synchronized method:
Remove async modifier
Remove await from methods as well as
foreachstatementChange types
From To Task or ValueTask void Task<T> or ValueTask<T> T IAsyncEnumerable<T> IEnumerable<T> IAsyncEnumerator<T> IEnumerator<T> Memory<T> Span<T> ReadOnlyMemory<T> ReadOnlySpan<T> Remove parameters
Invocation changes
- Remove ConfigureAwait
- Remove WithCancellation
- Remove
Asyncsuffix from method calls (e.g. MoveNextAsync becomes MoveNext) - Remove CancellationToken parameter
- Remove IProgress<T>.Report(T) call
- Remove Memory<T>.Span property
Remove
CreateSyncVersionAttributeUpdate XML documentation
Installation
To add the library use:
dotnet add package Zomp.SyncMethodGenerator
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (4)
Showing the top 4 popular GitHub repositories that depend on Zomp.SyncMethodGenerator:
| Repository | Stars |
|---|---|
|
FluentValidation/FluentValidation
A popular .NET validation library for building strongly-typed validation rules.
|
|
|
mini-software/MiniExcel
Fast, Low-Memory, Easy Excel .NET helper to import/export/template spreadsheet (support Linux, Mac)
|
|
|
Zeugma440/atldotnet
Fully managed, portable and easy-to-use C# library to read and edit audio data and metadata (tags) from various audio formats, playlists and CUE sheets
|
|
|
BigBang1112/gbx-net
General purpose library for Gbx files - data from Nadeo games like Trackmania or Shootmania, written in C#/.NET. It supports high performance serialization and deserialization of 400+ Gbx classes.
|
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 1.6.17 | 903 | 7/28/2025 | |
| 1.6.16 | 131 | 7/28/2025 | |
| 1.6.15 | 225 | 7/28/2025 | |
| 1.6.14 | 160 | 7/27/2025 | |
| 1.6.13 | 155 | 7/27/2025 | |
| 1.6.12 | 245 | 7/26/2025 | |
| 1.6.11 | 523 | 7/24/2025 | |
| 1.6.10 | 921 | 7/24/2025 | |
| 1.6.9 | 590 | 7/23/2025 | |
| 1.6.8 | 364 | 7/20/2025 | |
| 1.6.3 | 184 | 7/17/2025 | |
| 1.6.2 | 1,167 | 7/8/2025 | |
| 1.6.1 | 176 | 7/8/2025 | |
| 1.5.3 | 196 | 7/4/2025 | |
| 1.5.1 | 268 | 6/29/2025 | |
| 1.4.38 | 196 | 6/23/2025 | |
| 1.4.37 | 262 | 6/23/2025 | |
| 1.4.35 | 191 | 6/17/2025 | |
| 1.4.32 | 317 | 6/17/2025 | |
| 1.4.30 | 677 | 6/14/2025 | |
| 1.4.29 | 559 | 6/12/2025 | |
| 1.4.28 | 343 | 6/11/2025 | |
| 1.4.27 | 326 | 6/11/2025 | |
| 1.4.26 | 553 | 6/11/2025 | |
| 1.4.25 | 553 | 6/10/2025 | |
| 1.4.20 | 567 | 3/9/2025 | |
| 1.4.18 | 233 | 2/24/2025 | |
| 1.4.15 | 638 | 11/17/2024 | |
| 1.4.14 | 1,982 | 8/7/2024 | |
| 1.4.13 | 1,045 | 7/21/2024 | |
| 1.4.11 | 771 | 7/15/2024 | |
| 1.4.10 | 697 | 7/13/2024 | |
| 1.4.8 | 370 | 7/8/2024 | |
| 1.4.3 | 304 | 6/27/2024 | |
| 1.4.1 | 350 | 5/21/2024 | |
| 1.3.44 | 267 | 5/14/2024 | |
| 1.3.43 | 348 | 4/26/2024 | |
| 1.3.40 | 576 | 4/11/2024 | |
| 1.3.39 | 302 | 4/9/2024 | |
| 1.3.38 | 438 | 3/23/2024 | |
| 1.3.36 | 269 | 3/20/2024 | |
| 1.3.35 | 162 | 3/19/2024 | |
| 1.3.33 | 222 | 3/18/2024 | |
| 1.3.28 | 251 | 3/18/2024 | |
| 1.3.27 | 250 | 3/17/2024 | |
| 1.3.24 | 509 | 3/12/2024 | |
| 1.3.23 | 290 | 3/12/2024 | |
| 1.3.21 | 285 | 3/11/2024 | |
| 1.3.20 | 308 | 3/11/2024 | |
| 1.3.18 | 278 | 3/10/2024 | |
| 1.3.17 | 326 | 2/26/2024 | |
| 1.3.16 | 385 | 2/26/2024 | |
| 1.3.13 | 299 | 2/25/2024 | |
| 1.3.8-beta | 1,378 | 2/12/2024 | |
| 1.3.6 | 346 | 1/26/2024 | |
| 1.3.5 | 280 | 1/21/2024 | |
| 1.3.1 | 379 | 1/17/2024 | |
| 1.2.24 | 273 | 1/14/2024 | |
| 1.2.18 | 265 | 1/5/2024 | |
| 1.2.16 | 271 | 1/5/2024 | |
| 1.2.13 | 245 | 1/4/2024 | |
| 1.2.12 | 243 | 1/4/2024 | |
| 1.2.8 | 243 | 1/3/2024 | |
| 1.2.3 | 473 | 11/20/2023 | |
| 1.2.1 | 264 | 11/13/2023 | |
| 1.1.2 | 5,787 | 8/8/2023 | |
| 1.0.14 | 340 | 8/4/2023 | |
| 1.0.12 | 33,383 | 8/3/2023 | |
| 1.0.11 | 311 | 8/2/2023 | |
| 1.0.5 | 238 | 7/31/2023 | |
| 1.0.3 | 225 | 7/29/2023 | |
| 1.0.2 | 240 | 7/29/2023 | |
| 1.0.1 | 1,488 | 7/27/2023 | |
| 0.1.39-alpha | 634 | 1/25/2023 | |
| 0.1.38-alpha | 331 | 1/19/2023 | |
| 0.1.37-alpha | 333 | 1/19/2023 | |
| 0.1.34-alpha | 338 | 1/18/2023 | |
| 0.1.33-alpha | 301 | 1/15/2023 | |
| 0.1.30-alpha | 383 | 11/21/2022 | |
| 0.1.22-alpha | 320 | 11/19/2022 | |
| 0.1.21-alpha | 321 | 11/19/2022 | |
| 0.1.19-alpha | 291 | 11/19/2022 | |
| 0.1.18-alpha | 323 | 11/18/2022 | |
| 0.1.17-alpha | 404 | 11/14/2022 | |
| 0.1.13-alpha | 306 | 11/13/2022 | |
| 0.1.12-alpha | 346 | 10/31/2022 | |
| 0.1.10-alpha | 323 | 10/28/2022 | |
| 0.1.9-alpha | 346 | 10/27/2022 | |
| 0.1.8-alpha | 371 | 10/27/2022 | |
| 0.1.5-alpha | 350 | 10/27/2022 | |
| 0.1.4-alpha | 348 | 10/27/2022 | |
| 0.1.3-alpha | 382 | 10/26/2022 | |
| 0.1.2-alpha | 398 | 10/25/2022 | |
| 0.1.1-alpha | 401 | 10/25/2022 |