MVFC.DataX.Providers.RabbitMQ 1.2.0

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

MVFC.DataX.Providers.RabbitMQ

🇧🇷 Leia em Português

CI codecov NuGet Downloads License Platform

RabbitMQ data provider for MVFC.DataX, implementing readers and writers via RabbitMQ.Client.

This package is part of the MVFC.DataX suite. For the full documentation and more examples, please check the main repository README.

Installation

dotnet add package MVFC.DataX.Providers.RabbitMQ

Available Classes

Class Description
RabbitMqDataReader<T> Reads data from a RabbitMQ queue via AsyncEventingBasicConsumer mapped via a deserializer delegate. Automatically handles Ack/Nack responses based on completion.
RabbitMqDataWriter<T> Publishes items via BasicPublishAsync. Maintains a lazy internal connection (IConnection) established when writing the first time.

API Signatures

RabbitMqDataReader<T>

public RabbitMqDataReader(
    IConnectionFactory connectionFactory,
    string queueName,
    Func<byte[], T> deserializer) : IDisposable

RabbitMqDataWriter<T>

public RabbitMqDataWriter(
    IConnectionFactory connectionFactory,
    string exchange,
    string routingKey,
    Func<T, byte[]> serializer) : IDisposable

Usage / Example

Note: Both reader and writer maintain internal connections and channels. Ensure you call .Dispose() properly, utilizing using.

using System.Text.Json;
using MVFC.DataX.Pipeline;
using MVFC.DataX.Providers.RabbitMQ;
using RabbitMQ.Client;

var factory = new ConnectionFactory { HostName = "localhost" };

// 1. Setup the RabbitMQ Reader
using var reader = new RabbitMqDataReader<Order>(
    factory,
    "orders.inbound.queue",
    // Convert byte[] array back to your object
    deserializer: body => JsonSerializer.Deserialize<Order>(body)!
);

// 2. Setup the RabbitMQ Writer
using var writer = new RabbitMqDataWriter<Order>(
    factory,
    "orders.exchange",
    "orders.processed",
    // Serialize object to byte array
    serializer: order => JsonSerializer.SerializeToUtf8Bytes(order)
);

// 3. Orchestrate with PipelineBuilder
var pipeline = PipelineBuilder.ReadFrom(reader)
    .WriteTo(writer)
    // Run multiple threads to process message queue simultaneously
    .WithParallelism(4) 
    .Build();

await pipeline.RunAsync(cancellationToken);
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.  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

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
1.2.0 97 7/9/2026
1.1.0 99 7/9/2026
1.0.1 98 7/9/2026