AmbientTasks 1.0.1
dotnet add package AmbientTasks --version 1.0.1
NuGet\Install-Package AmbientTasks -Version 1.0.1
<PackageReference Include="AmbientTasks" Version="1.0.1" />
paket add AmbientTasks --version 1.0.1
#r "nuget: AmbientTasks, 1.0.1"
// Install AmbientTasks as a Cake Addin
#addin nuget:?package=AmbientTasks&version=1.0.1
// Install AmbientTasks as a Cake Tool
#tool nuget:?package=AmbientTasks&version=1.0.1
Benefits:
Avoids
async void
which, while being semantically correct for top-level event handlers, is very easy to misuse.Avoids fire-and-forget (
async Task
but ignoring the task). This comes with its own pitfalls, leaking the exception toTaskScheduler.UnobservedTaskException
or never discovering a defect due to suppressing exceptions.Test code can use a simple API to know exactly how long to wait for asynchronous processes triggered by non-async APIs before doing a final assert.
Exceptions are no longer missed in test code due to the test not waiting long enough or the exception being unhandled on a thread pool thread.
Unhandled task exceptions are sent to a chosen global handler immediately rather than waiting until the next garbage collection (arbitrarily far in the future) finalizes an orphaned task and triggers
TaskScheduler.UnobservedTaskException
.
Example 1 (view model)
When the UI picker bound to SelectedFooId
changes the property, the displayed label bound to SelectedFooName
should update to reflect information about the selection.
(See the How to use section to see what you’d probably want to add to your Program.Main
.)
public class ViewModel
{
private int selectedFooId;
public int SelectedFooId
{
get => selectedFooId;
set
{
if (selectedFooId == value) return;
selectedFooId = value;
OnPropertyChanged();
// Start task without waiting for it
AmbientTasks.Add(UpdateSelectedFooNameAsync(selectedFooId));
}
}
// Never use async void (or fire-and-forget which is in the same spirit)
private async Task UpdateSelectedFooNameAsync(int fooId)
{
SelectedFooName = null;
var foo = await LoadFooAsync(fooId);
if (selectedFooId != fooId) return;
// Update UI
SelectedFooName = foo.Name;
}
}
Test code
[Test]
public void Changing_selected_ID_loads_and_updates_selected_name()
{
// Set up a delay
var vm = new ViewModel(...);
vm.SelectedFooId = 42;
await AmbientTasks.WaitAllAsync();
Assert.That(vm.SelectedFooName, Is.EqualTo("Some name"));
}
Example 2 (form)
(See the How to use section to see what you’d probably want to add to your Program.Main
.)
public class MainForm
{
private void FooComboBox_GotFocus(object sender, EventArgs e)
{
// Due to idiosyncrasies of the third-party control, ShowPopup doesn’t work properly when called
// during the processing of this event. The recommendation is usually to queue ShowPopup to happen
// right after the event is no longer being handled via Control.BeginInvoke or similar.
// Use AmbientTasks.Post rather than:
// - Control.BeginInvoke
// - SynchronizationContext.Post
// - await Task.Yield() (requires async void event handler)
// This way, your tests know how long to wait and exceptions are automatically propagated to them.
AmbientTasks.Post(() => FooComboBox.ShowPopup());
}
}
Test code
[Test]
public void Foo_combo_box_opens_when_it_receives_focus()
{
var form = new MainForm(...);
form.Show();
WindowsFormsUtils.RunWithMessagePump(async () =>
{
form.FooComboBox.Focus();
await AmbientTasks.WaitAllAsync();
Assert.That(form.FooComboBox.IsPopupOpen, Is.True);
});
}
How to use
If your application has a top-level exception handler which grabs diagnostics or displays a prompt to send logs or restart, you’ll want to add this to the top of Program.Main
:
AmbientTasks.BeginContext(ex => GlobalExceptionHandler(ex));
Any failure in a task passed to AmbientTasks.Add
will be immediately handled there rather than throwing the exception on a background thread or synchronization context.
Use AmbientTasks.Add
and Post
any time a non-async call starts off an asynchronous or queued procedure. (See the example section.) This includes replacing fire-and-forget by passing the task to AmbientTasks.Add
and replacing async void
by changing it to void
and moving the awaits into an async Task
method or lambda. For example:
Before
private async void SomeEventHandler(object sender, EventArgs e)
{
// Update UI
var info = await GetInfoAsync(...);
// Update UI using info
}
After
private void SomeEventHandler(object sender, EventArgs e)
{
// Update UI
AmbientTasks.Add(async () =>
{
var info = await GetInfoAsync(...);
// Update UI using info
});
}
Finally, await AmbientTasks.WaitAllAsync()
in your test code whenever AmbientTasks.Add
is used. This gets the timing right and routes any background exceptions to the responsible test.
It could potentially make sense to delay the application exit until AmbientTasks.WaitAllAsync()
completes, too, depending on your needs.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Debug symbols are no longer in the NuGet package and are now published to the NuGet symbol location that is built in to Visual Studio. See the readme to load debug symbols for prerelease builds from MyGet.
(https://github.com/Techsola/AmbientTasks/blob/v1.0.1/CHANGELOG.md#101---2021-01-10)