magic.lambda.threading 17.2.0

dotnet add package magic.lambda.threading --version 17.2.0
NuGet\Install-Package magic.lambda.threading -Version 17.2.0
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="magic.lambda.threading" Version="17.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add magic.lambda.threading --version 17.2.0
#r "nuget: magic.lambda.threading, 17.2.0"
#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 magic.lambda.threading as a Cake Addin
#addin nuget:?package=magic.lambda.threading&version=17.2.0

// Install magic.lambda.threading as a Cake Tool
#tool nuget:?package=magic.lambda.threading&version=17.2.0

magic.lambda.threading - Thread support in Hyperlambda

This project contains all thread related slots for Hyperlambda. Threading in software development implies doing multiple things concurrently, scheduling CPU time for each of your threads, creating the illusion of having your computer doing multiple times concurrently. This concept is often referred to as "multi tasking" and is crucial for any modern operating system, and/or programming language. Hyperlambda contains several multi tasking related slots.

How to use [fork]

Forks the given lambda into a new thread of execution, using a thread from the thread pool. This slot is useful for creating "fire and forget" lambda objects, where you don't need to wait for the result of the execution before continuing executing the current scope.

fork
   info.log:I was invoked from another thread

To understand how [fork] works, you can imagine your computer's CPU as a single river, running down hill, and at some point the river divides into two equally large rivers. This is referred to as "a fork". The analogy of the river becomes important for another reason, which is the understanding of that the total amount of water is still the same, it's only parted into two smaller rivers - Implying you cannot "do more" with multi tasking, you can only equally share the same amount of resources as you had before between two different tasks. Multi threading does not make your CPU faster, it only schedules your CPU's time on multiple things, doing these things concurrently. However, if you have multiple tasks where each individual task needs to wait for IO data, threading typically speeds up your application, since it can make multiple requests for IO simultaneously, and have other machines, and/or processes working in parallel.

How to use [join]

Joins all child [fork] invocations, implying the slot will wait until all forks directly below it has finished executing, and automatically copy the result of the [fork] into the original node.

join
   fork
      http.get:"https://servergardens.com"
   fork
      http.get:"https://gaiasoul.com"

As an analogy for what occurs above, imagine the two rivers from our above [fork] analogy that forked from one larger river into two smaller rivers, for then again to join up and becoming one large river again further down.

How to use [semaphore]

Creates a named semaphore, where only one thread will be allowed to evaluate the same semaphore at the same time. Notice, the semaphore to use is defined through its value, implying you can use the same semaphore multiple places, by using the same value of your [semaphore] invocation.

semaphore:foo-bar
   /*
    * Only one thread will be allowed entrance into this piece of
    * code at the same time, ensuring synchronized access, for cases
    * where you cannot allow more than one thread to enter at the
    * same time.
    */

In the above semaphore "foo-bar" becomes the name of your semaphore. If you invoke [semaphore] in any other parts of your Hyperlambda code, with "foo-bar" as the value, only one of your lambda objects will be allowed to execute at the same time. This allows you to "synchronize access" to shared resources, where only one thread should be allowed to access the shared resource at the same time. Such shared resources might be for instance files, or other things shared between multiuple threads, where it's crucial that only one thread is allowed to access the shared resource at the same time.

How to use [sleep]

This slot will sleep the current thread for x number of milliseconds, where x is an integer value, expected to be passed in as its main value.

// Sleeps the main thread for 1 second, or 1000 milliseconds.
sleep:1000

Notice - This slot is typically releasing the thread back to the operating system, implying as the current thread is "sleeping", it will not be a blocking call, and require ZERO physical operating system threads while it is sleeping. This is true because of Hyperlambda's 100% perfectly async nature.

Magic's GitHub project page

Magic is 100% Open Source and you can find the primary project GitHub page here.

Project website for magic.lambda.threading

The source code for this repository can be found at github.com/polterguy/magic.lambda.threading, and you can provide feedback, provide bug reports, etc at the same place.

  • Build status
  • Quality Gate Status
  • Bugs
  • Code Smells
  • Coverage
  • Duplicated Lines (%)
  • Lines of Code
  • Maintainability Rating
  • Reliability Rating
  • Security Rating
  • Technical Debt
  • Vulnerabilities

The projects is copyright Thomas Hansen 2023 - 2024, and professionally maintained by AINIRO.IO.

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 was computed. 
.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 (1)

Showing the top 1 NuGet packages that depend on magic.lambda.threading:

Package Downloads
magic.library

Helper project for Magic to wire up everything easily by simply adding one package, and invoking two simple methods. When using Magic, this is (probably) the only package you should actually add, since this package pulls in everything else you'll need automatically, and wires up everything sanely by default. To use package go to https://polterguy.github.io

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
17.2.0 273 1/22/2024
17.1.7 157 1/12/2024
17.1.6 119 1/11/2024
17.1.5 154 1/5/2024
17.0.1 163 1/1/2024
17.0.0 305 12/14/2023
16.11.5 276 11/12/2023
16.9.0 271 10/9/2023
16.7.0 476 7/11/2023
16.6.12 212 7/5/2023
16.6.11 160 7/5/2023
16.6.10 123 7/5/2023
16.4.1 236 7/2/2023
16.4.0 316 6/22/2023
16.3.1 257 6/7/2023
16.3.0 272 5/28/2023
16.1.9 551 4/30/2023
15.10.11 408 4/13/2023
15.9.1 511 3/27/2023
15.9.0 387 3/24/2023
15.8.2 433 3/20/2023
15.7.0 316 3/6/2023
15.5.0 1,444 1/28/2023
15.2.0 573 1/18/2023
15.1.0 1,063 12/28/2022
14.5.7 622 12/13/2022
14.5.5 721 12/6/2022
14.5.1 589 11/23/2022
14.5.0 539 11/18/2022
14.4.5 619 10/22/2022
14.4.1 662 10/22/2022
14.4.0 566 10/17/2022
14.3.1 1,158 9/12/2022
14.3.0 560 9/10/2022
14.1.3 828 8/7/2022
14.1.2 580 8/7/2022
14.1.1 574 8/7/2022
14.0.14 606 7/26/2022
14.0.12 579 7/24/2022
14.0.11 549 7/23/2022
14.0.10 564 7/23/2022
14.0.9 572 7/23/2022
14.0.8 646 7/17/2022
14.0.5 708 7/11/2022
14.0.4 684 7/6/2022
14.0.3 644 7/2/2022
14.0.2 575 7/2/2022
14.0.0 768 6/25/2022
13.4.0 1,954 5/31/2022
13.3.4 1,348 5/9/2022
13.3.0 857 5/1/2022
13.2.0 1,057 4/21/2022
13.1.0 922 4/7/2022
13.0.0 638 4/5/2022
11.0.5 1,302 3/2/2022
11.0.4 687 2/22/2022
11.0.3 685 2/9/2022
11.0.2 713 2/6/2022
11.0.1 694 2/5/2022
10.0.21 679 1/28/2022
10.0.20 687 1/27/2022
10.0.19 676 1/23/2022
10.0.18 652 1/17/2022
10.0.16 663 1/14/2022