XivIpc 0.0.8
dotnet add package XivIpc --version 0.0.8
NuGet\Install-Package XivIpc -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="XivIpc" Version="0.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="XivIpc" Version="0.0.8" />
<PackageReference Include="XivIpc" />
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 XivIpc --version 0.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: XivIpc, 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 XivIpc@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=XivIpc&version=0.0.8
#tool nuget:?package=XivIpc&version=0.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
XivIpc
XivIpc contains the Unix-side implementation details behind the public shim. It owns the direct and sidecar message-bus transports, the sidecar protocol and broker lifecycle, brokered storage formats, and the shared-file TinyMemoryMappedFile implementation.
What It Is For
This project provides the transport and storage primitives that make the Linux, Wine, and Proton runtime path work.
- Direct message delivery through in-memory or native shared-memory storage.
- Broker-backed message delivery over a Unix socket control plane plus brokered shared-file storage.
- Shared-file memory-mapped-file semantics for named payload storage.
- Runtime and filesystem helpers for shared directories, permissions, logging, and process stamps.
How It Works
UnixDirectTinyMessageBusselects direct storage for the direct bus family.in-memoryis local-process only and mainly useful for tests;shared-memoryis the native Linux direct IPC mode.UnixSidecarTinyMessageBusconnects to the native broker, attaches to brokered storage, queues outbound messages, and reconnects in the background if the broker disappears.UnixSidecarProcessManagerdiscovers or launchesXivIpc.NativeHost, enforces the single-broker-per-directory rule, and waits for a live socket plus state file before handing the lease to callers.BrokeredChannelJournalis the default brokered production storage format.BrokeredChannelRingis an alternate brokered storage primitive retained for bounded-storage behavior and future experimentation.UnixTinyMemoryMappedFileimplements named file-backed shared storage with a small on-disk header, process-local locking, and OS file locking.UnixSharedStorageHelperscentralizes path resolution, permission handling, and runtime-specific path normalization.
Main Entry Points
Messaging/UnixDirectTinyMessageBus.csMessaging/UnixSidecarTinyMessageBus.csMessaging/UnixSidecarProcessManager.csIO/UnixTinyMemoryMappedFile.csMessaging/BrokeredChannelJournal.csMessaging/BrokeredChannelRing.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
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on XivIpc:
| Package | Downloads |
|---|---|
|
TinyIpc.Shim
TinyIpc-compatible public API backed by the XivIpc Unix shared-file and sidecar transports. |
GitHub repositories
This package is not used by any popular GitHub repositories.