magic.signals.contracts 16.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package magic.signals.contracts --version 16.3.0
NuGet\Install-Package magic.signals.contracts -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.contracts" 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.contracts --version 16.3.0
#r "nuget: magic.signals.contracts, 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.contracts as a Cake Addin
#addin nuget:?package=magic.signals.contracts&version=16.3.0

// Install magic.signals.contracts as a Cake Tool
#tool nuget:?package=magic.signals.contracts&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 (32)

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

Package Downloads
magic.data.common

A generic and dynamic SQL data adapter, allowing you to generate SQL dialects, specific to your database type, such as MySQL or SQL Server. This is the core base class data adapter for Magic. To use package go to https://polterguy.github.io

magic.signals

A Super Signals implementation for Magic built on magic.node, allowing you to invoke functionality from one component in another component without any (direct) references between your components. To use package go to https://polterguy.github.io

magic.endpoint.services

Service implementations for magic.endpoint, that allows you to dynamically evaluate Hyperlambda files associated with a URL. To use package go to https://polterguy.github.io

magic.lambda.logging

Logging helper slots for Magic, allowing you to inject your own logging implementation, giving you the ability to create log entries from Hyperlambda. To use package go to https://polterguy.github.io

magic.endpoint

Magic endpoint is a dynamic Hyperlambda endpoint evaluator, allowing you to create HTTP REST API endpoints dynamically, that will execute a Hyperlambda file when evaluated, where the URL is a reference to the physical path on disc to your Hyperlambda file. 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 1,534 1/12/2024
17.1.6 1,474 1/11/2024
17.1.5 1,570 1/5/2024
17.0.1 1,651 1/1/2024
17.0.0 2,263 12/14/2023
16.11.5 2,482 11/12/2023
16.9.0 2,557 10/9/2023
16.7.0 3,730 7/11/2023
16.4.1 3,839 7/2/2023
16.4.0 3,791 6/22/2023
16.3.1 4,214 6/6/2023
16.3.0 4,097 5/28/2023
16.1.9 5,301 4/30/2023
15.10.11 5,200 4/13/2023
15.9.1 6,344 3/26/2023
15.9.0 5,999 3/24/2023
15.8.2 6,044 3/20/2023
15.7.0 6,645 3/6/2023
15.5.0 9,671 1/28/2023
15.2.0 8,180 1/18/2023
15.1.0 9,182 12/28/2022
14.5.7 9,101 12/13/2022
14.5.5 9,294 12/6/2022
14.5.1 9,617 11/23/2022
14.5.0 9,711 11/18/2022
14.4.5 11,551 10/22/2022
14.4.1 11,637 10/22/2022
14.4.0 11,389 10/17/2022
14.3.1 14,250 9/12/2022
14.3.0 12,171 9/10/2022
14.1.3 12,494 8/7/2022
14.1.2 12,181 8/7/2022
14.1.1 12,326 8/7/2022
14.0.14 12,411 7/26/2022
14.0.12 12,333 7/24/2022
14.0.11 12,207 7/23/2022
14.0.10 12,263 7/23/2022
14.0.9 12,305 7/23/2022
14.0.8 12,538 7/17/2022
14.0.5 12,301 7/11/2022
14.0.4 12,659 7/6/2022
14.0.3 12,490 7/2/2022
14.0.2 12,377 7/2/2022
14.0.0 12,877 6/25/2022
13.4.0 14,834 5/31/2022
13.3.4 14,147 5/9/2022
13.3.0 14,294 5/1/2022
13.2.0 14,127 4/21/2022
13.1.0 13,452 4/7/2022
13.0.0 12,684 4/5/2022
11.0.5 14,047 3/2/2022
11.0.4 12,730 2/22/2022
11.0.3 12,305 2/9/2022
11.0.2 12,912 2/6/2022
11.0.1 1,136 2/5/2022
11.0.0 12,194 2/5/2022
10.0.21 16,863 1/28/2022
10.0.20 12,773 1/27/2022
10.0.19 12,567 1/23/2022
10.0.18 12,137 1/17/2022
10.0.15 9,936 12/31/2021
10.0.14 6,926 12/28/2021
10.0.7 9,046 12/22/2021
10.0.5 7,437 12/18/2021
9.9.9 9,128 11/29/2021
9.9.3 9,072 11/9/2021
9.9.2 7,456 11/4/2021
9.9.0 7,962 10/30/2021
9.8.9 7,816 10/29/2021
9.8.7 7,744 10/27/2021
9.8.6 7,791 10/27/2021
9.8.5 7,853 10/26/2021
9.8.0 10,129 10/20/2021
9.7.9 8,453 10/19/2021
9.7.5 10,141 10/14/2021
9.7.0 8,034 10/9/2021
9.6.6 1,752 8/14/2021
9.2.0 33,602 5/26/2021
9.1.4 15,898 4/21/2021
9.1.0 8,572 4/14/2021
9.0.0 8,563 4/5/2021
8.9.9 17,071 3/30/2021
8.9.3 9,026 3/19/2021
8.9.2 7,546 1/29/2021
8.9.1 7,732 1/24/2021
8.9.0 8,789 1/22/2021
8.6.9 11,305 11/8/2020
8.6.6 9,570 11/2/2020
8.6.0 12,431 10/28/2020
8.5.0 8,821 10/23/2020
8.4.0 16,266 10/13/2020
8.3.1 9,531 10/5/2020
8.3.0 7,749 10/3/2020
8.2.2 9,254 9/26/2020
8.2.1 7,750 9/25/2020
8.2.0 7,868 9/25/2020
8.1.17 18,084 9/13/2020
8.1.16 1,282 9/13/2020
8.1.15 13,769 9/12/2020
8.1.11 9,737 9/11/2020
8.1.10 8,082 9/6/2020
8.1.9 8,810 9/3/2020
8.1.8 7,978 9/2/2020
8.1.7 7,378 8/28/2020
8.1.4 7,481 8/25/2020
8.1.3 7,544 8/18/2020
8.1.2 7,519 8/16/2020
8.1.1 7,641 8/15/2020
8.1.0 1,112 8/15/2020
8.0.1 14,454 8/7/2020
8.0.0 7,524 8/7/2020
7.0.1 1,134 8/7/2020
7.0.0 13,193 6/28/2020
5.0.0 18,304 2/25/2020
4.0.4 18,659 1/27/2020
4.0.3 7,222 1/27/2020
4.0.2 7,377 1/16/2020
4.0.1 7,333 1/11/2020
4.0.0 7,428 1/5/2020
3.1.0 14,310 11/10/2019
3.0.0 17,265 10/23/2019
2.0.1 18,641 10/15/2019
2.0.0 8,292 10/13/2019
1.1.9 6,749 10/11/2019
1.1.8 8,271 10/10/2019
1.1.7 8,660 10/9/2019
1.1.6 3,902 10/7/2019
1.1.5 8,383 10/6/2019
1.1.3 6,864 10/6/2019
1.1.2 5,947 10/5/2019
1.0.1 4,988 9/26/2019
1.0.0 2,375 9/26/2019