Go to file
Mark van Renswoude b3ea711c3b Implemented skip parameter for export and shovel commands 2021-09-15 20:16:15 +02:00
Examples Moved new example 7 to examples subfolder 2021-07-18 14:33:57 +02:00
Tapeti Fixed a few code hints 2021-09-05 10:05:04 +02:00
Tapeti.Annotations Implemented RoutingKey attribute 2021-06-04 11:51:45 +02:00
Tapeti.Autofac Updated all references NuGet packages to latest stable version 2021-05-29 21:52:07 +02:00
Tapeti.CastleWindsor Updated all references NuGet packages to latest stable version 2021-05-29 21:52:07 +02:00
Tapeti.Cmd Implemented skip parameter for export and shovel commands 2021-09-15 20:16:15 +02:00
Tapeti.DataAnnotations Updated all references NuGet packages to latest stable version 2021-05-29 21:52:07 +02:00
Tapeti.DataAnnotations.Extensions Updated all references NuGet packages to latest stable version 2021-05-29 21:52:07 +02:00
Tapeti.Flow Fixed a few code hints 2021-09-05 10:05:04 +02:00
Tapeti.Flow.SQL Updated all references NuGet packages to latest stable version 2021-05-29 21:52:07 +02:00
Tapeti.Ninject Updated all references NuGet packages to latest stable version 2021-05-29 21:52:07 +02:00
Tapeti.Serilog Implemented #31: Include message details in exception logging (optionally) 2021-09-02 16:16:44 +02:00
Tapeti.SimpleInjector Updated all references NuGet packages to latest stable version 2021-05-29 21:52:07 +02:00
Tapeti.Tests Implemented RoutingKey attribute 2021-06-04 11:51:45 +02:00
Tapeti.Transient Fixed exception in Tapeti.Transient when message arrives after the timeout 2021-09-09 15:11:44 +02:00
Tapeti.UnityContainer Updated all references NuGet packages to latest stable version 2021-05-29 21:52:07 +02:00
build Changed version number strategy to include CommitsSinceVersionSource 2019-10-01 10:27:48 +02:00
docs Implemented skip parameter for export and shovel commands 2021-09-15 20:16:15 +02:00
resources Added Tapeti.Flow.SQL to AppVeyor build 2018-12-19 21:58:50 +01:00
.gitignore Implemented EasyNetQ Hosepipe compatibility for Tapeti.cmd [ci skip] 2019-10-17 11:34:08 +02:00
GitVersion.yml Preparations for NuGet push 2017-02-08 22:09:06 +01:00
README.md Readme updated for 2.0 merge 2019-10-21 14:03:48 +02:00
Tapeti.png [ci skip] Major refactoring for 2.0 2019-08-13 20:30:04 +02:00
Tapeti.sln Moved new example 7 to examples subfolder 2021-07-18 14:33:57 +02:00
Tapeti.sln.DotSettings Start of Tapeti.Cmd [ci skip] 2019-10-16 13:54:43 +02:00
UNLICENSE Preparations for NuGet push 2017-02-08 22:09:06 +01:00
appveyor.yml Actually fixed the AppVeyor artifact filter this time maybe hopefully 2021-09-09 15:31:10 +02:00

README.md

Introduction

Tapeti is a wrapper for the RabbitMQ .NET Client designed for long-running microservices. Its main goal is to minimize the amount of messaging code required, and instead focus on the higher-level flow.

Key features

  • Consumers are declared using MVC-style controllers and are registered automatically based on annotations
  • Publishing requires only the message class, no transport details such as exchange and routing key
  • Flow extension (stateful request - response handling with support for parallel requests)
  • No inheritance required
  • Graceful recovery in case of connection issues, and in contrast to most libraries not designed for services, during startup as well
  • Extensible using middleware

Show me the code!

Below is a bare minimum message controller from the first example project to get a feel for how messages are handled using Tapeti.

/// <summary>
/// Example of a simple broadcast message used in the standard publish - subscribe pattern
/// </summary>
public class PublishSubscribeMessage
{
    [Required(ErrorMessage = "Don't be impolite, supply a {0}")]
    public string Greeting { get; set; }
}


[MessageController]
[DynamicQueue("tapeti.example.01")]
public class ExampleMessageController
{
    public ExampleMessageController() { }

    public void HandlePublishSubscribeMessage(PublishSubscribeMessage message)
    {
        Console.WriteLine("Received message: " + message.Greeting);
    }
}

More details and examples can be found in the documentation as well as the example projects included with the source.

Documentation

The documentation for Tapeti is available on Read the Docs:

Master branch (stable release)
Documentation Status

Develop branch
Documentation Status

Builds

Builds are automatically run using AppVeyor, with the resulting packages being pushed to NuGet.

Master build (stable release) Build status

Latest build Build status