IcedTasks 0.6.0-beta001

This is a prerelease version of IcedTasks.
There is a newer version of this package available.
See the version list below for details.
dotnet add package IcedTasks --version 0.6.0-beta001
NuGet\Install-Package IcedTasks -Version 0.6.0-beta001
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IcedTasks" Version="0.6.0-beta001" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IcedTasks --version 0.6.0-beta001
#r "nuget: IcedTasks, 0.6.0-beta001"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install IcedTasks as a Cake Addin
#addin nuget:?package=IcedTasks&version=0.6.0-beta001&prerelease

// Install IcedTasks as a Cake Tool
#tool nuget:?package=IcedTasks&version=0.6.0-beta001&prerelease

IcedTasks

What

This library contains additional computation expressions for the task CE utilizing the Resumable Code introduced in F# 6.0.

Computation Expression<sup>1</sup> Library<sup>2</sup> TFM<sup>3</sup> Hot/Cold<sup>4</sup> Multiple-Awaits<sup>5</sup> Multi-start<sup>6</sup> Tailcalls<sup>7</sup> CancellationToken propagation<sup>8</sup> Cancellation checks<sup>9</sup> Parallel when using and!<sup>10</sup>
F# Async FSharp.Core netstandard2.0 Cold multiple multiple tailcalls implicit implicit No
F# ParallelAsync IcedTasks netstandard2.0 Cold multiple multiple tailcalls implicit implicit Yes
F# Task/C# Task FSharp.Core netstandard2.0 Hot multiple once-start no tailcalls explicit explicit No
F# ValueTask IcedTasks netstandard2.1 Hot once once-start no tailcalls explicit explicit Yes
F# ColdTask IcedTasks netstandard2.0 Cold multiple multiple no tailcalls explicit explicit Yes
F# CancellableTask IcedTasks netstandard2.0 Cold multiple multiple no tailcalls implicit implicit Yes
F# CancellableValueTask IcedTasks netstandard2.1 Cold one multiple no tailcalls implicit implicit Yes
  • <sup>1</sup> - Computation Expression
  • <sup>2</sup> - Which Nuget package do they come from
  • <sup>3</sup> - Which Target Framework Moniker these are available in
  • <sup>4</sup> - Hot refers to the asynchronous code block already been started and will eventually produce a value. Cold refers to the asynchronous code block that is not started and must be started explicitly by caller code. See F# Async Tutorial and Asynchronous C# and F# (II.): How do they differ? for more info.
  • <sup>5</sup> - ValueTask Awaiting patterns
  • <sup>6</sup> - Multi-start refers to being able to start the asynchronous code block again. See FAQ on Task Start for more info.
  • <sup>7</sup> - Allows use of let rec with the computation expression. See Tail call Recursion for more info.
  • <sup>8</sup> - CancellationToken is propagated to all types the support implicit CancellatationToken passing. Calling cancellableTask { ... } nested inside async { ... } (or any of those combinations) will use the CancellationToken from when the code was started.
  • <sup>9</sup> - Cancellation will be checked before binds and runs.
  • <sup>10</sup> - Allows parallel execution of the asynchronous code using the Applicative Syntax in computation expressions.

How

ValueTask

open IcedTasks

let myValueTask = task {
    let! theAnswer = valueTask { return 42 }
    return theAnswer
}

ColdTask

Short example:

open IcedTasks

let coldTask_dont_start_immediately = task {
    let mutable someValue = null
    let fooColdTask = coldTask { someValue <- 42 }
    do! Async.Sleep(100)
    // ColdTasks will not execute until they are called, similar to how Async works
    Expect.equal someValue null ""
    // Calling fooColdTask will start to execute it
    do! fooColdTask ()
    Expect.equal someValue 42 ""
}

CancellableTask & CancellableValueTask

The examples show cancellableTask but cancellableValueTask can be swapped in.

Accessing the context's CancellationToken:

  1. Binding against CancellationToken -> Task<_>

    let writeJunkToFile = 
        let path = Path.GetTempFileName()
    
        cancellableTask {
            let junk = Array.zeroCreate bufferSize
            use file = File.Create(path)
    
            for i = 1 to manyIterations do
                // You can do! directly against a function with the signature of `CancellationToken -> Task<_>` to access the context's `CancellationToken`. This is slightly more performant.
                do! fun ct -> file.WriteAsync(junk, 0, junk.Length, ct)
        }
    
  2. Binding against CancellableTask.getCancellationToken

    let writeJunkToFile = 
        let path = Path.GetTempFileName()
    
        cancellableTask {
            let junk = Array.zeroCreate bufferSize
            use file = File.Create(path)
            // You can bind against `CancellableTask.getCancellationToken` to get the current context's `CancellationToken`.
            let! ct = CancellableTask.getCancellationToken ()
            for i = 1 to manyIterations do
                do! file.WriteAsync(junk, 0, junk.Length, ct)
        }
    

Short example:

let executeWriting = task {
    // CancellableTask is an alias for `CancellationToken -> Task<_>` so we'll need to pass in a `CancellationToken`.
    // For this example we'll use a `CancellationTokenSource` but if you were using something like ASP.NET, passing in `httpContext.RequestAborted` would be appropriate.
    use cts = new CancellationTokenSource()
    // call writeJunkToFile from our previous example
    do! writeJunkToFile cts.Token
}


ParallelAsync

Short example:

open IcedTasks

let exampleHttpCall url = async {
    // Pretend we're executing an HttpClient call
    return 42
}

let getDataFromAFewSites = parallelAsync {
    let! result1 = exampleHttpCall "howManyPlantsDoIOwn"
    and! result2 = exampleHttpCall "whatsTheTemperature"
    and! result3 = exampleHttpCall "whereIsMyPhone"

    // Do something meaningful with results
    return ()
}


Builds

GitHub Actions
GitHub Actions
Build History

NuGet

Package Stable Prerelease
IcedTasks NuGet Badge NuGet Badge

Developing

Make sure the following requirements are installed on your system:

or


Environment Variables

  • CONFIGURATION will set the configuration of the dotnet commands. If not set, it will default to Release.
    • CONFIGURATION=Debug ./build.sh will result in -c additions to commands such as in dotnet build -c Debug
  • GITHUB_TOKEN will be used to upload release notes and Nuget packages to GitHub.
    • Be sure to set this before releasing
  • DISABLE_COVERAGE Will disable running code coverage metrics. AltCover can have severe performance degradation so it's worth disabling when looking to do a quicker feedback loop.
    • DISABLE_COVERAGE=1 ./build.sh

Building

> build.cmd <optional buildtarget> // on windows
$ ./build.sh  <optional buildtarget>// on unix

The bin of your library should look similar to:

$ tree src/MyCoolNewLib/bin/
src/MyCoolNewLib/bin/
└── Debug
    └── net50
        ├── MyCoolNewLib.deps.json
        ├── MyCoolNewLib.dll
        ├── MyCoolNewLib.pdb
        └── MyCoolNewLib.xml


Build Targets

  • Clean - Cleans artifact and temp directories.
  • DotnetRestore - Runs dotnet restore on the solution file.
  • DotnetBuild - Runs dotnet build on the solution file.
  • DotnetTest - Runs dotnet test on the solution file.
  • GenerateCoverageReport - Code coverage is run during DotnetTest and this generates a report via ReportGenerator.
  • WatchTests - Runs dotnet watch with the test projects. Useful for rapid feedback loops.
  • GenerateAssemblyInfo - Generates AssemblyInfo for libraries.
  • DotnetPack - Runs dotnet pack. This includes running Source Link.
  • SourceLinkTest - Runs a Source Link test tool to verify Source Links were properly generated.
  • PublishToNuGet - Publishes the NuGet packages generated in DotnetPack to NuGet via paket push.
  • GitRelease - Creates a commit message with the Release Notes and a git tag via the version in the Release Notes.
  • GitHubRelease - Publishes a GitHub Release with the Release Notes and any NuGet packages.
  • FormatCode - Runs Fantomas on the solution file.
  • BuildDocs - Generates Documentation from docsSrc and the XML Documentation Comments from your libraries in src.
  • WatchDocs - Generates documentation and starts a webserver locally. It will rebuild and hot reload if it detects any changes made to docsSrc files, libraries in src, or the docsTool itself.
  • ReleaseDocs - Will stage, commit, and push docs generated in the BuildDocs target.
  • Release - Task that runs all release type tasks such as PublishToNuGet, GitRelease, ReleaseDocs, and GitHubRelease. Make sure to read Releasing to setup your environment correctly for releases.

Releasing

git add .
git commit -m "Scaffold"
git remote add origin https://github.com/user/MyCoolNewLib.git
git push -u origin master
  • Create your NuGeT API key

    paket config add-token "https://www.nuget.org" 4003d786-cc37-4004-bfdf-c4f3e8ef9b3a
    
    • or set the environment variable NUGET_TOKEN to your key
  • Create a GitHub OAuth Token

    • You can then set the environment variable GITHUB_TOKEN to upload release notes and artifacts to github
    • Otherwise it will fallback to username/password
  • Then update the CHANGELOG.md with an "Unreleased" section containing release notes for this version, in KeepAChangelog format.

NOTE: Its highly recommend to add a link to the Pull Request next to the release note that it affects. The reason for this is when the RELEASE target is run, it will add these new notes into the body of git commit. GitHub will notice the links and will update the Pull Request with what commit referenced it saying "added a commit that referenced this pull request". Since the build script automates the commit message, it will say "Bump Version to x.y.z". The benefit of this is when users goto a Pull Request, it will be clear when and which version those code changes released. Also when reading the CHANGELOG, if someone is curious about how or why those changes were made, they can easily discover the work and discussions.

Here's an example of adding an "Unreleased" section to a CHANGELOG.md with a 0.1.0 section already released.

## [Unreleased]

### Added
- Does cool stuff!

### Fixed
- Fixes that silly oversight

## [0.1.0] - 2017-03-17
First release

### Added
- This release already has lots of features

[Unreleased]: https://github.com/user/MyCoolNewLib.git/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/user/MyCoolNewLib.git/releases/tag/v0.1.0
  • You can then use the Release target, specifying the version number either in the RELEASE_VERSION environment variable, or else as a parameter after the target name. This will:
    • update CHANGELOG.md, moving changes from the Unreleased section into a new 0.2.0 section
      • if there were any prerelease versions of 0.2.0 in the changelog, it will also collect their changes into the final 0.2.0 entry
    • make a commit bumping the version: Bump version to 0.2.0 and adds the new changelog section to the commit's body
    • publish the package to NuGet
    • push a git tag
    • create a GitHub release for that git tag

macOS/Linux Parameter:

./build.sh Release 0.2.0

macOS/Linux Environment Variable:

RELEASE_VERSION=0.2.0 ./build.sh Release
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on IcedTasks:

Package Downloads
FsToolkit.ErrorHandling.IcedTasks

FsToolkit.ErrorHandling is an extensive utility library based around the F# Result type, enabling consistent and powerful error handling.

Migrondi.Core

This is the core library for the Migrondi CLI, you can use this library to run the same functionality of Migrondi as part of your source code or to write an abstraction for different kind of tools.

Hox

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.11.5 407 4/22/2024
0.11.4 313 4/6/2024
0.11.3 472 2/7/2024
0.11.2 81 2/7/2024
0.11.0 539 1/31/2024
0.10.2 314 1/29/2024
0.10.0 10,612 11/22/2023
0.9.2 7,210 11/9/2023
0.9.1 95 11/8/2023
0.9.0 127 11/6/2023
0.8.5 721 10/29/2023
0.8.5-beta001 96 10/28/2023
0.8.4 116 10/28/2023
0.8.3 111 10/27/2023
0.8.2 340 10/23/2023
0.8.2-beta003 85 10/23/2023
0.8.0 2,339 7/18/2023
0.7.1 174 7/8/2023
0.7.0 3,982 7/4/2023
0.6.0 178 6/30/2023
0.6.0-beta001 120 6/30/2023
0.5.4 5,548 4/3/2023
0.5.4-beta004 120 4/3/2023
0.5.3 11,020 2/22/2023
0.5.1 3,042 12/17/2022
0.5.0 525 12/9/2022
0.5.0-beta001 116 12/9/2022
0.4.0 362 12/2/2022
0.3.2 322 12/1/2022
0.3.2-beta002 123 12/1/2022
0.3.2-beta001 108 12/1/2022
0.3.1 331 11/27/2022
0.3.1-beta002 121 11/27/2022
0.3.1-beta001 122 11/27/2022
0.3.0 1,310 11/8/2022
0.3.0-beta007 125 11/8/2022
0.3.0-beta006 129 11/8/2022
0.3.0-beta005 86 11/8/2022
0.3.0-beta004 90 11/8/2022
0.3.0-beta001 83 11/7/2022
0.2.0 37,973 3/23/2022
0.1.1 418 3/7/2022
0.1.0 524 3/6/2022
0.1.0-beta004 143 3/6/2022
0.1.0-beta003 147 3/6/2022
0.1.0-beta002 153 3/6/2022
0.1.0-beta001 150 3/6/2022

## [0.6.0-beta001] - 2023-06-30

[0.6.0-beta001]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.5.4...v0.6.0-beta001

### Added
- [CancellableTask.whenAll/throttled/sequential](https://github.com/TheAngryByrd/IcedTasks/pull/23)  Credits @TheAngryByrd