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" />
<PackageReference Include="MeshWeaver.Kernel.Hub" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=MeshWeaver.Kernel.Hub&version=2.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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
- .NET Interactive Documentation - Learn more about .NET Interactive
- Main MeshWeaver Documentation - More about MeshWeaver hosting options
Product | Versions 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.
-
net9.0
- MeshWeaver.Kernel (>= 2.0.3)
- MeshWeaver.Layout (>= 2.0.3)
- MeshWeaver.Mesh.Contract (>= 2.0.3)
- MeshWeaver.Messaging.Hub (>= 2.0.3)
- Microsoft.DotNet.Interactive (>= 1.0.0-beta.25160.1)
- Microsoft.DotNet.Interactive.CSharp (>= 1.0.0-beta.25160.1)
- Microsoft.DotNet.Interactive.Formatting (>= 1.0.0-beta.25160.1)
- Microsoft.DotNet.Interactive.PackageManagement (>= 1.0.0-beta.25160.1)
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 |