TinyIpc.Shim
0.0.8
dotnet add package TinyIpc.Shim --version 0.0.8
NuGet\Install-Package TinyIpc.Shim -Version 0.0.8
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="TinyIpc.Shim" Version="0.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TinyIpc.Shim" Version="0.0.8" />
<PackageReference Include="TinyIpc.Shim" />
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 TinyIpc.Shim --version 0.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TinyIpc.Shim, 0.0.8"
#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.
#:package TinyIpc.Shim@0.0.8
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TinyIpc.Shim&version=0.0.8
#tool nuget:?package=TinyIpc.Shim&version=0.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
TinyIpc.Shim
TinyIpc.Shim is the public compatibility layer that applications consume. It preserves the familiar TinyIpc-facing types such as TinyMessageBus, TinyMemoryMappedFile, and TinyIpcOptions, but routes them to this repo's Unix-focused implementation.
What It Is For
This project exists so callers can keep using the TinyIpc-style API while the actual transport is provided by XivIpc.
TinyMessageBusexposes publish/subscribe messaging for a named channel.TinyMemoryMappedFileexposes named shared storage.TinyIpcOptionscarries sizing and timeout settings.
How It Works
TinyMessageBusvalidates that callers are using the shimTinyMemoryMappedFile, derives aChannelInfo, and creates the real backend throughUnixMessageBusBackendFactory.- The shim resolves one of two bus families from
XivIpc:directorsidecar. direct + in-memoryis local-process only and mainly useful for tests.direct + shared-memoryis the native Linux direct IPC mode.sidecar + journalis the default brokered production mode, andsidecar + ringis an alternate retained brokered mode.- If initialization fails, the shim swaps in a disabled implementation so failures surface predictably.
TinyMemoryMappedFileis a lazy wrapper overXivIpc.IO.UnixTinyMemoryMappedFile.- Windows-only raw-handle constructors are intentionally unsupported here. The shim only supports the named Unix-style constructors.
- ABI-flavor compile constants (
3x,4x,5x,compat) let publish scripts build plugin-specific compatibility variants from the same source.
Main Entry Points
Messaging/TinyMessageBus.csIO/TinyMemoryMappedFile.csTinyIpcOptions.cs
| 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Options (>= 9.0.0)
- System.Memory.Data (>= 9.0.0)
- XivIpc (>= 0.0.8)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.