Transceiver.Generator 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Transceiver.Generator --version 1.0.1
                    
NuGet\Install-Package Transceiver.Generator -Version 1.0.1
                    
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="Transceiver.Generator" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Transceiver.Generator" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Transceiver.Generator" />
                    
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 Transceiver.Generator --version 1.0.1
                    
#r "nuget: Transceiver.Generator, 1.0.1"
                    
#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 Transceiver.Generator@1.0.1
                    
#: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=Transceiver.Generator&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Transceiver.Generator&version=1.0.1
                    
Install as a Cake Tool

Transceiver

Transceiver allows you to send messages In-process, between processes and between machines. Implementing, Request/Response and Publish/Subscribe patterns. It also offers integration with relevant queuing Services like AmazonSQS, Azure Queues, Google Publish/Subscribe, RabbitMQ, Kafka and others.

Setting up Transceiver

Transceiver has been built with DI in mind, and provides methods that allows you to configure its depedencies. You can configure Transceiver in the following way:

    public override void Run(IServiceCollection services, CancellationToken cancellationToken)
    {
		Assembly assembly = this.GetType().Assembly;
        _ = services.AddTransceiver((config) =>
        {
            ITransceiverSetup setup = config.ConfigureTcp(new(IPAddress.Loopback, ServerPort));
            setup.SetupServer(false);
            setup.SetupClient();
        }, assembly);
        ServiceProvider provider = services.BuildServiceProvider();
        provider.ConfigureTransceiverProvider(assembly);
	}

Using Transceiver

Transceiver implements Request/Response and Publish/Subscribe patterns. It offers the methods TransceiveOnceAsync and TransceiveMany allowing to receive one, or multiple responses, per each request. Please see the Demo for an example on how to use it.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.

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.1.0 89 3/19/2026
2.0.1 91 3/16/2026
2.0.0 92 1/25/2026
1.0.4 148 10/25/2025
1.0.3 106 10/12/2025
1.0.2 102 10/12/2025
1.0.1 340 9/8/2025