Faactory.Channels.Parcel 1.0.0

dotnet add package Faactory.Channels.Parcel --version 1.0.0
                    
NuGet\Install-Package Faactory.Channels.Parcel -Version 1.0.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="Faactory.Channels.Parcel" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Faactory.Channels.Parcel" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Faactory.Channels.Parcel" />
                    
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 Faactory.Channels.Parcel --version 1.0.0
                    
#r "nuget: Faactory.Channels.Parcel, 1.0.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.
#:package Faactory.Channels.Parcel@1.0.0
                    
#: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=Faactory.Channels.Parcel&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Faactory.Channels.Parcel&version=1.0.0
                    
Install as a Cake Tool

Channels - Parcel Protocol

Parcel Protocol implementation for the Channels library.

Learn more about Parcel Protocol.

Learn more about Channels;

Getting Started

Install the package from NuGet

dotnet add package Faactory.Channels.Parcel

To enable decoding or encoding of Parcel Messages on the pipeline, we just need to register the respective adapters with the channel pipeline. It is the same for server or client channels.

IChannelBuilder channel = ...;

// This will add the necessary middleware to the pipeline.
channel.AddParcelMiddleware();

Alternatively, you can add the adapters directly to the pipeline, if you want to have more control over the pipeline configuration.

IChannelBuilder channel = ...;

// This adapter will decode from a IReadableByteBuffer and forward Parcel.Message[]
channel.AddInputAdapter<ParcelDecoderAdapter>();

// This adapter will encode a single Parcel.Message or a Parcel.Message[] into a byte[]
channel.AddOutputAdapter<ParcelEncoderAdapter>();

Observables

The observables API is deprecated and was removed in version 1.x. Use the Faactory.Channels.Correlation package instead.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  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 is compatible.  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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Faactory.Channels.Parcel:

Package Downloads
Faactory.Channels.PubSub

Channels pub/sub

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 128 3/3/2026
0.4.0 568 1/30/2024
0.3.1 695 12/8/2023
0.3.0 580 12/8/2023
0.2.5 539 12/8/2023
0.2.4 546 12/4/2023
0.2.2 832 6/1/2023
0.2.1 956 1/24/2023
0.2.0 925 1/23/2023
0.1.1 1,105 7/5/2022
0.1.0 1,129 4/12/2022
0.1.0-preview-5 814 4/12/2022