MeshWeaver.Kernel.Hub 2.0.3

dotnet add package MeshWeaver.Kernel.Hub --version 2.0.3
                    
NuGet\Install-Package MeshWeaver.Kernel.Hub -Version 2.0.3
                    
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="MeshWeaver.Kernel.Hub" Version="2.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MeshWeaver.Kernel.Hub" Version="2.0.3" />
                    
Directory.Packages.props
<PackageReference Include="MeshWeaver.Kernel.Hub" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MeshWeaver.Kernel.Hub --version 2.0.3
                    
#r "nuget: MeshWeaver.Kernel.Hub, 2.0.3"
                    
#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.
#addin nuget:?package=MeshWeaver.Kernel.Hub&version=2.0.3
                    
Install MeshWeaver.Kernel.Hub as a Cake Addin
#tool nuget:?package=MeshWeaver.Kernel.Hub&version=2.0.3
                    
Install MeshWeaver.Kernel.Hub as a Cake Tool

MeshWeaver.Kernel.Hub

Overview

MeshWeaver.Kernel.Hub provides a message hub plugin for a dotnet interactive kernel. It allows notebooks to execute code against remote kernels distributed across the mesh.

Usage

Basic Configuration

var builder = WebApplication.CreateBuilder(args);

// Configure mesh with kernel support
builder.ConfigureMesh(builder => 
    builder
        .AddKernel()
        .ConfigureMesh(config => config.AddMeshNodes(/* your nodes */))
);

var app = builder.Build();

Code Execution Examples

Basic Code Execution
// Execute code through the kernel
var command = new SubmitCode("Console.WriteLine(\"Hello World\");");
client.Post(
    new KernelCommandEnvelope(KernelCommandEnvelope.Serialize(
        KernelCommandEnvelope.Create(command)))
    {
        IFrameUrl = "http://localhost/area"
    },
    o => o.WithTarget(new KernelAddress())
);
Interactive Data Processing
// Example of interactive calculator with UI updates
const string Code = @"
using MeshWeaver.Layout;
using MeshWeaver.Mesh;
using static MeshWeaver.Layout.Controls;

record Calculator(double Summand1, double Summand2);
static object CalculatorSum(Calculator c) => 
    Markdown($""**Sum**: {c.Summand1 + c.Summand2}"");

Mesh.Edit(new Calculator(1,2), CalculatorSum)
";

client.Post(
    new SubmitCodeRequest(Code) { Id = "Area" },
    o => o.WithTarget(new KernelAddress())
);

Features

  • Remote kernel execution through mesh
  • Interactive data processing
  • Real-time UI updates
  • State management across kernel sessions
  • Integration with MeshWeaver layout system

Integration

  • Works with .NET Interactive
  • Compatible with both monolithic and Orleans hosting
  • Supports mesh message routing
  • Integrates with MeshWeaver layout system

See Also

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.3 448 3/24/2025
2.0.2 419 3/24/2025
2.0.1 73 3/21/2025
2.0.0 110 3/20/2025
2.0.0-preview3 67 2/28/2025
2.0.0-Preview2 63 2/10/2025
2.0.0-preview1 76 1/6/2025