magic.signals 16.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package magic.signals --version 16.3.0
NuGet\Install-Package magic.signals -Version 16.3.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.signals" Version="16.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add magic.signals --version 16.3.0
#r "nuget: magic.signals, 16.3.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.signals as a Cake Addin
#addin nuget:?package=magic.signals&version=16.3.0

// Install magic.signals as a Cake Tool
#tool nuget:?package=magic.signals&version=16.3.0

magic.signals - Super signals for Hyperlambda

magic.signals is a "Super Signals" implementation for .Net 6 built on top of magic.node, allowing you to invoke functions from one assembly in another assembly without having any direct references between your projects.

Active Events or Super Signals internals

Below you can find a couple of articles written about the idea by yours truly.

The above is made possible by always having a YALOA, allowing us to invoke methods in classes through a "magic string", which references a type in a dictionary, where the string is its key, and the types are dynamically loaded during startup of your AppDomain. Imagine the following code.

[Slot(Name = "foo.bar")]
public class FooBar : ISlot
{
    public void Signal(ISignaler signaler, Node input)
    {
        input.Value = 42;
    }
}

The above declares a "slot" for the signal [foo.bar]. In any other place in our AppDomain we can use an ISignaler instance to Signal the above slot by using something such as the following.

/*
 * This will invoke our Signal method above
 */
var args = new Node();
signaler.Signal("foo.bar", args);

/*
 * The value of args is now 42.
 */
Assert.Equal(42, args.Value);

Notice that there are no shared types between the invoker and the handler, and there are no references necessary to be shared between these two assemblies. This results in an extremely loosely coupled plugin architecture, where you can dynamically add any plugin you wish into your AppDomain, by simply referencing whatever plugin assembly you wish to bring into your AppDomain, and immediately start consuming your plugin's functionality - Or dynamically loading it during runtime for that matter, resulting in that you instantly have access to its slots, without needing to create cross projects references in any ways.

This results in an extremely loosely coupled architecture of related components, where any one component can easily be exchanged with any other component, as long as it is obeying by the implicit interface of the component you're replacing. Completely eliminating "strongly typing", making interchanging components with other components equally simply in a static programming language such as the .Net CLR as providing a function object in JavaScript. In many ways, this results in having all the advantages from a functional programming language in a static programming language, while still keeping the strongly typing around for cases where you need strongly typing - Allowing you to choose which paradigm you want to use, based upon individual use cases, and not having the language and platform dictate your choices in these regards.

The magic.signals implementation uses IServiceProvider to instantiate your above FooBar class when it wants to evaluate your slot. This makes it behave as a good IoC citizen, allowing you to pass in for instance interfaces into your constructor, and have the .Net dependency injection automatically create objects of whatever interface your slot implementation requires.

There is also an async version of the interface, which allows you to declare async slots, transparently letting the runtime choose which implementation to use, depending upon whether or not it is currently in an async execution context or not. Below you can see how to accomplish the same as above, except this time the slot will be invoked within an async context.

[Slot(Name = "foo.bar")]
public class FooBar : ISlotAsync
{
    public Task SignalAsync(ISignaler signaler, Node input)
    {
        input.Value = 42;
        await Task.Yield();
    }
}

It's a common practice to implements slots that recursively invokes other slots, by combining the above two constructs, into one single class. Below is an example.

[Slot(Name = "foo.bar")]
public class FooBar : ISlot, ISlotAsync
{
    // Sync version.
    public void Signal(ISignaler signaler, Node input)
    {
        input.Value = 42;
    }

    // Async version.
    public Task SignalAsync(ISignaler signaler, Node input)
    {
        input.Value = 42;
        await Task.Yield();
    }
}

The above simple example is probably not that useful to implement as an async slot, but for other parts of your code, where you for instance are accessing sockets, HTTP connections, or the file system for that matter - Creating async slots will have huge advantages for your application's ability to scale, and handle multiple simultaneous users and connections. The runtime will "automagically" choose the correct implementation, being synchronous or asynchronous, depending upon which execution context the execution object currently is within.

If your slots recursively invokes other slots, by for instance invoking signaler.Signal("eval", args), you should also implement the async interface, to allow for children lambda objects to be within an async context. This has huge advantages for your application's throughput.

Passing arguments to your slots

The Node class provides a graph object for you, allowing you to automagically pass in any arguments you wish. Notice, the whole idea is to de-couple your assemblies, hence you shouldn't really pass in anything but "native types", such as for instance System.String, System.DateTime, integers, etc. However, most complex POD structures, can also easily be represented using this Node class. The Node class is basically a name/value/children graph object, where the value can be any object, the name a string, and children is a list of children Nodes. In such a way, it provides a more C# friendly graph object, kind of resembling JSON, allowing you to internally within your assemblies, pass in a Node object as your parameters from the point of your signal, to the slot where you handle the signal. The Node POCO class again, is a bi-directional POD instance, allowing you to both pass arguments into the slot, in addition to having the slot return values back to the caller.

If you invoke Signal or SignalAsync from C#, you can optionally pass in a function object that will be executed after the signal has been executed. This is useful for cases where you're creating an async signal invocation, but not invoking it immediately, and rather returning it as a Task to some other parts of your system, to ensure something occurs after the signal has been executed. Below is an example.

var args = new Node();
return signaler.SignalAsync("foo.bar", args, () => { /* ... This will happen AFTER execution of signal ... */ });

Magic Signals a DSL

A lot of the idea behind Magic Signals is that combined with magic.node, and especially its ability to parse Hyperlambda, it becomes a very good foundation for a DSL, or a Domain Specific programming Language implementation, allowing you to easily create your own programming languages, and keywords, based upon Hyperlambda syntax trees. Hyperlambda in this context being the textual representation of your Node hierarchy.

Project website for magic.signals

The source code for this repository can be found at github.com/polterguy/magic.signals, 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 of Aista, Ltd 2021 - 2023, and professionally maintained by AINIRO your friendly ChatGPT website chatbot vendor.

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 (5)

Showing the top 5 NuGet packages that depend on magic.signals:

Package Downloads
magic.lambda

A microscopic and super dynamic scripting language and DSL for .Net Core, based upon Hyperlambda syntax, and Super Signals. This project is the Hyperlambda core implementation (keywords) for Magic. To use package go to https://polterguy.github.io

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

magic.lambda.threading

Threading support for Hyperlambda and Magic. To use package go to https://polterguy.github.io

magic.lambda.cql

CQL data adapters for Magic and Hyperlambda. To use package go to https://polterguy.github.io

magic.data.cql

CQL data adapters for Magic to store files and folders, etc. 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.1.7 364 1/12/2024
17.1.6 323 1/11/2024
17.1.5 388 1/5/2024
17.0.1 412 1/1/2024
17.0.0 635 12/14/2023
16.11.5 683 11/12/2023
16.9.0 673 10/9/2023
16.7.0 1,025 7/11/2023
16.4.1 951 7/2/2023
16.4.0 901 6/22/2023
16.3.1 859 6/6/2023
16.3.0 870 5/28/2023
16.1.9 1,207 4/30/2023
15.10.11 1,064 4/13/2023
15.9.1 1,252 3/26/2023
15.9.0 1,163 3/24/2023
15.8.2 1,173 3/20/2023
15.7.0 1,087 3/6/2023
15.5.0 2,487 1/28/2023
15.2.0 1,748 1/18/2023
15.1.0 2,164 12/28/2022
14.5.7 1,746 12/13/2022
14.5.5 1,891 12/6/2022
14.5.1 1,851 11/23/2022
14.5.0 1,779 11/18/2022
14.4.5 2,117 10/22/2022
14.4.1 2,108 10/22/2022
14.4.0 2,006 10/17/2022
14.3.1 3,241 9/12/2022
14.3.0 2,008 9/10/2022
14.1.3 2,316 8/7/2022
14.1.2 2,100 8/7/2022
14.1.1 2,022 8/7/2022
14.0.14 2,085 7/26/2022
14.0.12 2,089 7/24/2022
14.0.11 2,058 7/23/2022
14.0.10 2,016 7/23/2022
14.0.9 2,020 7/23/2022
14.0.8 2,167 7/17/2022
14.0.5 2,247 7/11/2022
14.0.4 2,216 7/6/2022
14.0.3 2,171 7/2/2022
14.0.2 2,103 7/2/2022
14.0.0 2,267 6/25/2022
13.4.0 3,482 5/31/2022
13.3.4 2,808 5/9/2022
13.3.0 2,691 5/1/2022
13.2.0 2,649 4/21/2022
13.1.0 2,488 4/7/2022
13.0.0 2,146 4/5/2022
11.0.5 2,904 3/2/2022
11.0.4 2,239 2/22/2022
11.0.3 2,261 2/9/2022
11.0.2 2,267 2/6/2022
11.0.1 471 2/5/2022
11.0.0 2,214 2/5/2022
10.0.21 2,745 1/28/2022
10.0.20 2,222 1/27/2022
10.0.19 2,211 1/23/2022
10.0.18 1,671 1/17/2022
10.0.15 2,283 12/31/2021
10.0.14 1,161 12/28/2021
10.0.7 2,082 12/22/2021
10.0.5 1,281 12/18/2021
9.9.9 1,627 11/29/2021
9.9.3 1,814 11/9/2021
9.9.2 1,594 11/4/2021
9.9.0 1,876 10/30/2021
9.8.9 1,667 10/29/2021
9.8.7 1,595 10/27/2021
9.8.6 1,589 10/27/2021
9.8.5 1,663 10/26/2021
9.8.0 2,516 10/20/2021
9.7.9 536 10/19/2021
9.7.5 1,452 10/14/2021
9.7.0 837 10/9/2021
9.6.6 1,184 8/14/2021
9.2.0 6,245 5/26/2021
9.1.4 1,257 4/21/2021
9.1.0 1,027 4/14/2021
9.0.0 941 4/5/2021
8.9.9 1,211 3/30/2021
8.9.3 1,519 3/19/2021
8.9.2 1,014 1/29/2021
8.9.1 1,089 1/24/2021
8.9.0 1,198 1/22/2021
8.6.9 3,242 11/8/2020
8.6.6 1,956 11/2/2020
8.6.0 4,175 10/28/2020
8.5.0 2,052 10/23/2020
8.4.0 5,813 10/13/2020
8.3.1 2,726 10/5/2020
8.3.0 1,282 10/3/2020
8.2.2 2,039 9/26/2020
8.2.1 1,375 9/25/2020
8.2.0 1,321 9/25/2020
8.1.17 7,244 9/13/2020
8.1.16 658 9/13/2020
8.1.15 1,996 9/12/2020
8.1.11 2,571 9/11/2020
8.1.10 1,623 9/6/2020
8.1.9 1,524 9/3/2020
8.1.8 1,490 9/2/2020
8.1.7 1,194 8/28/2020
8.1.4 1,208 8/25/2020
8.1.3 1,277 8/18/2020
8.1.2 1,213 8/16/2020
8.1.1 1,261 8/15/2020
8.1.0 529 8/15/2020
8.0.1 2,690 8/7/2020
8.0.0 1,227 8/7/2020
7.0.1 486 8/7/2020
7.0.0 1,953 6/28/2020
5.0.0 7,594 2/25/2020
4.0.4 7,956 1/27/2020
4.0.3 1,266 1/27/2020
4.0.2 1,351 1/16/2020
4.0.1 1,364 1/11/2020
4.0.0 1,401 1/5/2020
3.1.0 6,400 11/10/2019
3.0.0 3,938 10/23/2019
2.0.1 8,234 10/15/2019
2.0.0 1,658 10/13/2019
1.2.0 1,393 10/11/2019
1.1.9 1,288 10/10/2019
1.1.8 620 10/10/2019
1.1.7 6,599 10/9/2019
1.1.6 3,298 10/7/2019
1.1.5 7,817 10/6/2019
1.1.3 6,272 10/6/2019
1.1.2 5,351 10/5/2019
1.1.1 540 10/5/2019
1.1.0 558 10/5/2019