DotNetCore.CAP 10.0.0-preview-280318356

CAP Logo

CAP                     中文

Docs & Dashboard AppVeyor NuGet NuGet Preview Member project of .NET Core Community GitHub license

CAP is a .NET library that provides a lightweight, easy-to-use, and efficient solution for distributed transactions and event bus integration.

When building SOA or Microservice-based systems, services often need to be integrated via events. However, simply using a message queue cannot guarantee reliability. CAP leverages a local message table, integrated with your current database, to solve exceptions that can occur during distributed system communications. This ensures that event messages are never lost.

You can also use CAP as a standalone EventBus. It offers a simplified approach to event publishing and subscribing without requiring you to inherit or implement any specific interfaces.

Key Features

  • Core Functionality

    • Distributed Transactions: Guarantees data consistency across microservices using a local message table (Outbox Pattern).
    • Event Bus: High-performance, lightweight event bus for decoupled communication.
    • Guaranteed Delivery: Ensures messages are never lost, with automatic retries for failed messages.
  • Advanced Messaging

    • Delayed Messages: Native support for publishing messages with a delay, without relying on message queue features.
    • Flexible Subscriptions: Supports attribute-based, wildcard (*, #), and partial topic subscriptions.
    • Consumer Groups & Fan-Out: Easily implement competing consumer or fan-out patterns for load balancing or broadcasting.
    • Parallel & Serial Processing: Configure consumers for high-throughput parallel processing or ordered sequential execution.
    • Backpressure Mechanism: Automatically manages processing speed to prevent memory overload (OOM) under high load.
  • Extensibility & Integration

    • Pluggable Architecture: Supports a wide range of message queues (RabbitMQ, Kafka, Azure Service Bus, etc.) and databases (SQL Server, PostgreSQL, MongoDB, etc.).
    • Heterogeneous Systems: Provides mechanisms to integrate with non-CAP or legacy systems.
    • Customizable Filters & Serialization: Intercept the processing pipeline with custom filters and support various serialization formats.
  • Monitoring & Observability

    • Real-time Dashboard: A built-in web dashboard to monitor messages, view status, and manually retry.
    • Service Discovery: Integrates with Consul and Kubernetes for node discovery in a distributed environment.
    • OpenTelemetry Support: Built-in instrumentation for distributed tracing, providing end-to-end visibility.

Architecture Overview

CAP Architecture

CAP implements the Outbox Pattern as described in the eShop on .NET ebook.

Getting Started

1. Installation

Install the main CAP package into your project using NuGet.

PM> Install-Package DotNetCore.CAP

Next, install the desired transport and storage providers.

Transports (Message Queues):

PM> Install-Package DotNetCore.CAP.Kafka
PM> Install-Package DotNetCore.CAP.RabbitMQ
PM> Install-Package DotNetCore.CAP.AzureServiceBus
PM> Install-Package DotNetCore.CAP.AmazonSQS
PM> Install-Package DotNetCore.CAP.NATS
PM> Install-Package DotNetCore.CAP.RedisStreams
PM> Install-Package DotNetCore.CAP.Pulsar

Storage (Databases):

The event log table will be integrated into the database you select.

PM> Install-Package DotNetCore.CAP.SqlServer
PM> Install-Package DotNetCore.CAP.MySql
PM> Install-Package DotNetCore.CAP.PostgreSql
PM> Install-Package DotNetCore.CAP.MongoDB     // Requires MongoDB 4.0+ cluster

2. Configuration

Configure CAP in your Startup.cs or Program.cs.

public void ConfigureServices(IServiceCollection services)
{
    // If you are using EF as the ORM
    services.AddDbContext<AppDbContext>(); 
    
    // If you are using MongoDB
    services.AddSingleton<IMongoClient>(new MongoClient("..."));

    services.AddCap(x =>
    {
        // Using Entity Framework
        // CAP can auto-discover the connection string
        x.UseEntityFramework<AppDbContext>();

        // Using ADO.NET
        x.UseSqlServer("Your ConnectionString");
        x.UseMySql("Your ConnectionString");
        x.UsePostgreSql("Your ConnectionString");

        // Using MongoDB (requires a 4.0+ cluster)
        x.UseMongoDB("Your ConnectionString");

        // Choose your message transport
        x.UseRabbitMQ("HostName");
        x.UseKafka("ConnectionString");
        x.UseAzureServiceBus("ConnectionString");
        x.UseAmazonSQS(options => { /* ... */ });
        x.UseNATS("ConnectionString");
        x.UsePulsar("ConnectionString");
        x.UseRedisStreams("ConnectionString");
    });
}

3. Publish Messages

Inject ICapPublisher into your controller or service to publish events. As of version 7.0, you can also publish delayed messages.

public class PublishController : Controller
{
    private readonly ICapPublisher _capBus;

    public PublishController(ICapPublisher capPublisher)
    {
        _capBus = capPublisher;
    }

    [Route("~/adonet/transaction")]
    public IActionResult AdonetWithTransaction()
    {
        using (var connection = new MySqlConnection(ConnectionString))
        {
            // Start a transaction with auto-commit enabled
            using (var transaction = connection.BeginTransaction(_capBus, autoCommit: true))
            {
                // Your business logic...
                _capBus.Publish("xxx.services.show.time", DateTime.Now);
            }
        }
        return Ok();
    }

    [Route("~/ef/transaction")]
    public IActionResult EntityFrameworkWithTransaction([FromServices] AppDbContext dbContext)
    {
        using (var trans = dbContext.Database.BeginTransaction(_capBus, autoCommit: true))
        {
            // Your business logic...
            _capBus.Publish("xxx.services.show.time", DateTime.Now);
        }
        return Ok();
    }

    [Route("~/publish/delay")]
    public async Task<IActionResult> PublishWithDelay()
    {
        // Publish a message with a 30-second delay
        await _capBus.PublishDelayAsync(TimeSpan.FromSeconds(30), "xxx.services.show.time", DateTime.Now);
        return Ok();
    }
}

4. Subscribe to Messages

In a Controller Action

Add the [CapSubscribe] attribute to a controller action to subscribe to a topic.

public class SubscriptionController : Controller
{
    [CapSubscribe("xxx.services.show.time")]
    public void CheckReceivedMessage(DateTime messageTime)
    {
        Console.WriteLine($"Message received: {messageTime}");
    }
}

In a Business Logic Service

If your subscriber is not in a controller, the class must implement the ICapSubscribe interface.

namespace BusinessCode.Service
{
    public interface ISubscriberService
    {
        void CheckReceivedMessage(DateTime datetime);
    }

    public class SubscriberService : ISubscriberService, ICapSubscribe
    {
        [CapSubscribe("xxx.services.show.time")]
        public void CheckReceivedMessage(DateTime datetime)
        {
            // Handle the message
        }
    }
}

Remember to register your service in Startup.cs:

public void ConfigureServices(IServiceCollection services)
{
    services.AddTransient<ISubscriberService, SubscriberService>();

    services.AddCap(x =>
    {
        // ...
    });
}

Asynchronous Subscriptions

For async operations, your subscription method should return a Task and can accept a CancellationToken.

public class AsyncSubscriber : ICapSubscribe
{
    [CapSubscribe("topic.name")]
    public async Task ProcessAsync(Message message, CancellationToken cancellationToken)
    {
        await SomeOperationAsync(message, cancellationToken);
    }
}

Partial Topic Subscriptions

Group topic subscriptions by defining a partial topic on the class level. The final topic will be a combination of the class-level and method-level topics. In this example, the Create method subscribes to customers.create.

[CapSubscribe("customers")]
public class CustomersSubscriberService : ICapSubscribe
{
    [CapSubscribe("create", isPartial: true)]
    public void Create(Customer customer)
    {
        // ...
    }
}

Subscription Groups

Subscription groups are similar to consumer groups in Kafka. They allow you to load-balance message processing across multiple instances of a service.

By default, CAP uses the assembly name as the group name. If multiple subscribers in the same group subscribe to the same topic, only one will receive the message (competing consumers). If they are in different groups, all will receive the message (fan-out).

You can specify a group directly in the attribute:

[CapSubscribe("xxx.services.show.time", Group = "group1")]
public void ShowTime1(DateTime datetime)
{
    // ...
}

[CapSubscribe("xxx.services.show.time", Group = "group2")]
public void ShowTime2(DateTime datetime)
{
    // ...
}

You can also set a default group name in the configuration:

services.AddCap(x =>
{
    x.DefaultGroup = "my-default-group";  
});

Dashboard

CAP provides a real-time dashboard to view sent and received messages and their status.

PM> Install-Package DotNetCore.CAP.Dashboard

The dashboard is accessible by default at http://localhost:xxx/cap. You can customize the path via options: x.UseDashboard(opt => { opt.PathMatch = "/my-cap"; });.

For distributed environments, the dashboard supports service discovery to view data from all nodes.

Contribute

We welcome contributions! Participating in discussions, reporting issues, and submitting pull requests are all great ways to help. Please read our contributing guidelines (we can create this file if it doesn't exist) to get started.

License

CAP is licensed under the MIT License.

Showing the top 20 packages that depend on DotNetCore.CAP.

Packages Downloads
ZhonTai.Admin
中台Admin权限管理接口库
74
ZhonTai.Admin
中台Admin权限管理接口库
75
ZhonTai.Admin
中台Admin权限管理接口库
76
ZhonTai.Admin
中台Admin权限管理接口库
77
ZhonTai.Admin
中台Admin权限管理接口库
78
ZhonTai.Admin
中台Admin权限管理接口库
79
ZhonTai.Admin
中台Admin权限管理接口库
80
ZhonTai.Admin
中台Admin权限管理接口库
82
ZhonTai.Admin
中台Admin权限管理接口库
83
ZhonTai.Admin
中台Admin权限管理接口库
84
ZhonTai.Admin
中台Admin权限管理接口库
86
ZhonTai.Admin
中台Admin权限管理接口库
88
ZhonTai.Admin
中台Admin权限管理接口库
90
ZhonTai.Admin
中台Admin权限管理接口库
93
ZhonTai.Admin
中台Admin权限管理接口库
97

Version Downloads Last updated
10.0.0 26 11/30/2025
10.0.0-preview-280318356 18 11/23/2025
8.4.1 17 10/24/2025
8.4.0 23 09/15/2025
8.4.0-preview-271338004 23 08/15/2025
8.4.0-preview-270476069 23 08/01/2025
8.4.0-preview-270285676 27 08/02/2025
8.3.5 29 05/28/2025
8.3.5-preview-262164550 28 04/26/2025
8.3.4 32 04/27/2025
8.3.3 34 03/05/2025
8.3.3-preview-255432523 29 02/09/2025
8.3.3-preview-254219859 36 01/22/2025
8.3.2 35 01/02/2025
8.3.2-preview-248100009 40 11/14/2024
8.3.1 41 11/14/2024
8.3.1-preview-247022046 37 12/10/2024
8.3.0 37 11/14/2024
8.3.0-preview-243613753 41 11/14/2024
8.2.0 37 11/14/2024
8.2.0-preview-234883029 35 11/14/2024
8.2.0-preview-233720681 36 11/28/2024
8.1.2 41 11/14/2024
8.1.1 41 04/27/2024
8.1.1-preview-230008876 34 11/14/2024
8.1.0 40 11/14/2024
8.1.0-preview-226548602 41 11/14/2024
8.1.0-preview-225165712 45 11/14/2024
8.0.1 39 02/04/2024
8.0.0 37 11/14/2024
8.0.0-preview-218723843 37 11/14/2024
8.0.0-preview-218688659 45 11/14/2024
7.2.3-preview-217562936 39 11/14/2024
7.2.3-preview-217174309 41 11/28/2024
7.2.3-preview-216527974 32 11/14/2024
7.2.2 43 11/14/2024
7.2.1 41 11/13/2024
7.2.0 43 11/14/2024
7.2.0-preview-207226127 42 11/14/2024
7.2.0-preview-207205557 34 11/14/2024
7.2.0-preview-204044155 46 11/14/2024
7.1.4 42 11/14/2024
7.1.3 47 06/16/2023
7.1.3-preview-200912175 41 11/14/2024
7.1.3-preview-200730887 32 11/14/2024
7.1.2 37 11/14/2024
7.1.2-preview-198398083 35 11/14/2024
7.1.1 40 11/14/2024
7.1.1-preview-197551401 41 11/14/2024
7.1.1-preview-196764828 38 11/14/2024
7.1.1-preview-196761499 39 11/28/2024
7.1.0 41 11/14/2024
7.1.0-preview-194230942 35 11/14/2024
7.1.0-preview-193202380 39 11/14/2024
7.0.3 35 11/27/2024
7.0.2 36 11/14/2024
7.0.2-preview-189692844 35 11/14/2024
7.0.1 39 11/14/2024
7.0.0 48 06/16/2023
7.0.0-preview-186133345 35 11/14/2024
7.0.0-preview-185881699 42 11/14/2024
7.0.0-preview-185533510 35 11/14/2024
7.0.0-preview-185469232 34 11/14/2024
7.0.0-preview-185451687 37 11/14/2024
6.2.1 38 11/14/2024
6.2.1-preview-180716003 38 11/14/2024
6.2.0 42 11/14/2024
6.1.1 37 11/14/2024
6.1.1-preview-176300030 45 11/14/2024
6.1.1-preview-175769056 36 12/02/2024
6.1.0 49 09/05/2022
6.1.0-preview-165373954 38 11/14/2024
6.1.0-preview-163077268 39 11/14/2024
6.1.0-preview-162971117 38 11/14/2024
6.0.1 41 11/14/2024
6.0.0 37 11/14/2024
6.0.0-preview-153999281 37 11/14/2024
5.2.0 38 11/14/2024
5.2.0-preview-152861792 37 11/14/2024
5.2.0-preview-150458135 40 11/14/2024
5.1.4 36 11/14/2024
5.1.4-preview-147174683 39 11/14/2024
5.1.3 37 11/14/2024
5.1.3-preview-144669387 47 11/14/2024
5.1.3-preview-144222698 38 11/14/2024
5.1.2 40 12/02/2024
5.1.2-preview-143176668 43 11/27/2024
5.1.1 36 12/07/2024
5.1.1-preview-141622241 40 11/14/2024
5.1.1-preview-140603701 42 11/26/2024
5.1.0 43 11/14/2024
5.1.0-preview-138879827 35 11/14/2024
5.0.3 42 11/14/2024
5.0.2 39 11/14/2024
5.0.2-preview-136262472 35 11/14/2024
5.0.2-preview-136113481 44 11/14/2024
5.0.2-preview-135224594 38 12/02/2024
5.0.2-preview-134636747 39 11/14/2024
5.0.1 40 11/14/2024
5.0.1-preview-133783177 36 11/27/2024
5.0.0 45 11/14/2024
5.0.0-preview-132888327 34 11/14/2024
5.0.0-preview-132124922 42 11/30/2024
5.0.0-preview-131679580 38 06/02/2024
5.0.0-preview-126609691 44 06/02/2024
3.1.2 43 11/14/2024
3.1.2-preview-121943182 43 06/02/2024
3.1.2-preview-120665033 40 06/02/2024
3.1.2-preview-120490779 45 06/02/2024
3.1.2-preview-119453473 40 06/02/2024
3.1.1 44 11/14/2024
3.1.1-preview-115802637 37 06/02/2024
3.1.0 44 11/14/2024
3.1.0-preview-114160390 41 06/02/2024
3.1.0-preview-112969177 37 06/02/2024
3.1.0-preview-112250362 44 06/02/2024
3.1.0-preview-111117527 36 06/02/2024
3.1.0-preview-108719052 40 06/02/2024
3.0.4 37 11/14/2024
3.0.4-preview-106413158 40 06/02/2024
3.0.4-preview-103991021 44 06/02/2024
3.0.4-preview-102596937 41 06/02/2024
3.0.4-preview-102593320 43 06/02/2024
3.0.3 41 11/14/2024
3.0.3-preview-98619331 42 06/02/2024
3.0.2 39 11/14/2024
3.0.2-preview-97503759 46 06/02/2024
3.0.1 37 11/14/2024
3.0.1-preview-95233114 43 06/02/2024
3.0.1-preview-94915444 42 11/14/2024
3.0.0 40 11/14/2024
3.0.0-preview-93361469 46 06/02/2024
3.0.0-preview-92995853 35 06/02/2024
3.0.0-preview-92907246 33 06/02/2024
2.6.0 38 11/14/2024
2.6.0-preview-82454970 39 06/02/2024
2.6.0-preview-82001197 39 06/02/2024
2.6.0-preview-80821564 40 06/02/2024
2.6.0-preview-79432176 42 06/02/2024
2.5.1 39 11/14/2024
2.5.1-preview-75824665 37 06/02/2024
2.5.1-preview-73792921 36 06/02/2024
2.5.1-preview-73031417 34 06/02/2024
2.5.0 40 11/14/2024
2.5.0-preview-69219007 41 06/02/2024
2.5.0-preview-69210974 45 06/02/2024
2.5.0-preview-68640186 41 06/02/2024
2.5.0-preview-67093158 37 06/02/2024
2.4.2 41 11/14/2024
2.4.2-preview-62147279 41 06/02/2024
2.4.1 43 11/27/2024
2.4.0 47 11/14/2024
2.4.0-preview-58415569 52 06/02/2024
2.4.0-preview-58238865 51 06/02/2024
2.3.1 40 11/14/2024
2.3.1-preview-57307518 47 06/02/2024
2.3.1-preview-53660607 41 06/02/2024
2.3.1-preview-53320926 49 06/02/2024
2.3.0 41 11/14/2024
2.2.6-preview-50057154 39 06/02/2024
2.2.6-preview-50053657 44 06/02/2024
2.2.6-preview-49112414 46 06/02/2024
2.2.5 41 11/14/2024
2.2.5-preview-45566217 44 06/02/2024
2.2.5-preview-45139132 37 06/02/2024
2.2.4 39 11/14/2024
2.2.3-preview-43309801 45 11/14/2024
2.2.2 43 11/14/2024
2.2.2-preview-40816597 40 06/02/2024
2.2.1 38 11/14/2024
2.2.0 43 11/14/2024
2.2.0-preview-40294348 42 06/02/2024
2.2.0-preview-38490295 47 06/02/2024
2.2.0-preview-37969809 46 06/02/2024
2.2.0-preview-37943663 42 06/02/2024
2.1.4 38 11/03/2024
2.1.4-preview-34848409 47 06/02/2024
2.1.4-preview-34825232 43 06/02/2024
2.1.4-preview-33704197 40 06/02/2024
2.1.3 45 11/14/2024
2.1.3-preview-33358922 49 06/02/2024
2.1.3-preview-33191223 50 06/02/2024
2.1.3-preview-31198104 41 06/02/2024
2.1.2 41 11/14/2024
2.1.2-preview-30288174 42 06/02/2024
2.1.2-preview-30286136 44 06/02/2024
2.1.2-preview-29226626 44 06/02/2024
2.1.2-preview-28879945 43 06/02/2024
2.1.2-preview-28782089 51 06/02/2024
2.1.1 42 11/14/2024
2.1.1-preview-28628301 51 06/02/2024
2.1.1-preview-28414190 43 06/02/2024
2.1.0 42 11/14/2024
2.1.0-preview-26231671 46 06/02/2024
2.1.0-preview-25885614 37 06/02/2024
2.0.2 48 11/14/2024
2.0.1 42 11/14/2024
2.0.1-preview-21560113 46 06/02/2024
2.0.1-preview-21392243 39 06/02/2024
2.0.0 46 11/14/2024
2.0.0-preview-20091963 36 06/02/2024
2.0.0-preview-19793485 47 06/02/2024
1.2.0-preview-00019208119 42 05/28/2024
1.1.1-preview-00018720262 42 05/28/2024
1.1.0 42 12/03/2024
1.1.0-preview-00018359725 41 05/28/2024
1.1.0-preview-00018287510 45 05/28/2024
1.1.0-preview-00018199934 42 05/28/2024
1.1.0-preview-00017833331 45 05/28/2024
1.1.0-preview-00017748473 43 05/28/2024
1.0.1 47 11/14/2024
1.0.1-preview-00017636063 45 05/28/2024
1.0.1-preview-00017490435 39 05/28/2024
1.0.1-preview-00017285652 38 05/28/2024
1.0.0 42 11/14/2024
0.1.0-ci-00016390477 39 11/14/2024
0.1.0-ci-00016261636 40 11/14/2024
0.1.0-ci-00016020116 37 11/14/2024
0.1.0-ci-00016011622 39 11/14/2024
0.1.0-ci-00015583876 39 11/14/2024