DotNetCore.CAP 7.1.0-preview-194230942

CAP                     中文

Travis branch AppVeyor NuGet NuGet Preview Member project of .NET Core Community GitHub license

CAP is a library based on .Net standard, which is a solution to deal with distributed transactions, has the function of EventBus, it is lightweight, easy to use, and efficient.

In the process of building an SOA or MicroService system, we usually need to use the event to integrate each service. In the process, simple use of message queue does not guarantee reliability. CAP adopts local message table program integrated with the current database to solve exceptions that may occur in the process of the distributed system calling each other. It can ensure that the event messages are not lost in any case.

You can also use CAP as an EventBus. CAP provides a simpler way to implement event publishing and subscriptions. You do not need to inherit or implement any interface during subscription and sending process.

Architecture overview

cap.png

CAP implements the Outbox Pattern described in the eShop ebook.

Getting Started

NuGet

CAP can be installed in your project with the following command.

PM> Install-Package DotNetCore.CAP

CAP supports most popular message queue as transport, following packages are available to install:

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

CAP supports most popular database as event storage, following packages are available to install:

// select a database provider you are using, event log table will integrate into.

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

Configuration

First, you need to configure CAP in your Startup.cs:

public void ConfigureServices(IServiceCollection services)
{
    //......

    services.AddDbContext<AppDbContext>(); //Options, If you are using EF as the ORM
    services.AddSingleton<IMongoClient>(new MongoClient("")); //Options, If you are using MongoDB

    services.AddCap(x =>
    {
        // If you are using EF, you need to add the configuration:
        x.UseEntityFramework<AppDbContext>(); //Options, Notice: You don't need to config x.UseSqlServer(""") again! CAP can autodiscovery.

        // If you are using ADO.NET, choose to add configuration you needed:
        x.UseSqlServer("Your ConnectionStrings");
        x.UseMySql("Your ConnectionStrings");
        x.UsePostgreSql("Your ConnectionStrings");

        // If you are using MongoDB, you need to add the configuration:
        x.UseMongoDB("Your ConnectionStrings");  //MongoDB 4.0+ cluster

        // CAP support RabbitMQ,Kafka,AzureService as the MQ, choose to add configuration you needed:
        x.UseRabbitMQ("HostName");
        x.UseKafka("ConnectionString");
        x.UseAzureServiceBus("ConnectionString");
        x.UseAmazonSQS();
    });
}

Publish

Inject ICapPublisher in your Controller, then use the ICapPublisher to send messages.

The version 7.0+ supports publish delay 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))
        {
            using (var transaction = connection.BeginTransaction(_capBus, autoCommit: true))
            {
                //your business logic code

                _capBus.Publish("xxx.services.show.time", DateTime.Now);

                // Publish delay message
                _capBus.PublishDelayAsync(TimeSpan.FromSeconds(delaySeconds), "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 code

            _capBus.Publish("xxx.services.show.time", DateTime.Now);
        }

        return Ok();
    }
}

Subscribe

In Controller Action

Add the Attribute [CapSubscribe()] on Action to subscribe to messages:

public class PublishController : Controller
{
    [CapSubscribe("xxx.services.show.time")]
    public void CheckReceivedMessage(DateTime datetime)
    {
        Console.WriteLine(datetime);
    }
}

In Business Logic Service

If your subscription method is not in the Controller, then your subscribe class needs to implement 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)
        {
        }
    }
}

Then register your class that implements ISubscriberService in Startup.cs

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

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

Async subscription

You are able to implement async subscription. Subscription's method should return Task and receive CancellationToken as parameter.

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

Use partials for topic subscriptions

To group topic subscriptions on class level you're able to define a subscription on a method as a partial. Subscriptions on the message queue will then be a combination of the topic defined on the class and the topic defined on the method. In the following example the Create(..) function will be invoked when receiving a message on customers.create

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

Subscribe Group

The concept of a subscription group is similar to that of a consumer group in Kafka. it is the same as the broadcast mode in the message queue, which is used to process the same message between multiple different microservice instances.

When CAP startups, it will use the current assembly name as the default group name, if multiple same group subscribers subscribe to the same topic name, there is only one subscriber that can receive the message. Conversely, if subscribers are in different groups, they will all receive messages.

In the same application, you can specify Group property to keep subscriptions in different subscribe groups:


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

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

ShowTime1 and ShowTime2 will be called one after another because all received messages are processed linear. You can change that behaviour to set UseDispatchingPerGroup true.

BTW, You can specify the default group name in the configuration:

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

Dashboard

CAP also provides dashboard pages, you can easily view messages that were sent and received. In addition, you can also view the message status in real time in the dashboard. Use the following command to install the Dashboard in your project.

PM> Install-Package DotNetCore.CAP.Dashboard

In the distributed environment, the dashboard built-in integrates Consul as a node discovery, while the realization of the gateway agent function, you can also easily view the node or other node data, It's like you are visiting local resources.

services.AddCap(x =>
{
    //...

    // Register Dashboard
    x.UseDashboard();

    // Register to Consul
    x.UseDiscovery(d =>
    {
        d.DiscoveryServerHostName = "localhost";
        d.DiscoveryServerPort = 8500;
        d.CurrentNodeHostName = "localhost";
        d.CurrentNodePort = 5800;
        d.NodeId = 1;
        d.NodeName = "CAP No.1 Node";
    });
});

The default dashboard address is :http://localhost:xxx/cap, you can configure relative path /cap with x.UseDashboard(opt =>{ opt.MatchPath="/mycap"; }).

Contribute

One of the easiest ways to contribute is to participate in discussions and discuss issues. You can also contribute by submitting pull requests with code changes.

License

MIT

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

Packages Downloads
DotNetCore.CAP.Dashboard
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern.
30
DotNetCore.CAP.Dashboard
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern.
31
DotNetCore.CAP.Dashboard
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern.
32
DotNetCore.CAP.InMemoryStorage
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern.
30
ZhonTai.Admin
中台Admin权限管理接口库
30
ZhonTai.Admin
中台Admin权限管理接口库
32
ZhonTai.Admin
中台Admin权限管理接口库
33
ZhonTai.Admin
中台Admin权限管理接口库
34
ZhonTai.Admin
中台Admin权限管理接口库
35
ZhonTai.Admin
中台Admin权限管理接口库
38
ZhonTai.Admin
中台Admin权限管理接口库
39

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