Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
Ian Ye 0f7e6ba272 Update README.md há 7 anos
build Refactor. há 7 anos
samples/Sample.Kafka Refactor. há 7 anos
src Refactor. há 7 anos
test Refactor. há 7 anos
.gitattributes project init. há 8 anos
.gitignore há 8 anos
.travis.yml Update CI config há 7 anos
CAP.sln Modify README há 7 anos
CAP.vssettings Migration project to DotNetCore group, modify the namespace and assembly name. há 7 anos
CHANGELOG.md Update csproj há 7 anos
CODE_OF_CONDUCT.md Add project CI config and others. há 7 anos
ConfigureMSDTC.ps1 changed encode há 7 anos
LICENSE.txt Add project CI config and others. há 7 anos
README.md Update README.md há 7 anos
README.zh-cn.md Refactor. há 7 anos
appveyor.yml Add project CI config and others. há 7 anos
build.cake Add project CI config and others. há 7 anos
build.ps1 Add project CI config and others. há 7 anos
build.sh Add project CI config and others. há 7 anos

README.md

CAP

Travis branch AppVeyor NuGet GitHub license

CAP is a library to achieve eventually consistent in distributed architectures system like SOA,MicroService. It is lightweight,easy to use and efficiently.

OverView

CAP is a library that used in an ASP.NET Core project,Of Course you can ues it in ASP.NET Core with .NET Framework.

You can think of CAP as an EventBus because it has all the features of EventBus, and CAP provides a easier way to handle the publishing and subscribing than EventBus.

CAP has the function of Message Presistence, and it makes messages reliability when your service is restarted or down. CAP provides a Producer Service based on Microsoft DI that integrates seamlessly with your business services and supports strong consistency transactions.

This is a diagram of the CAP working in the ASP.NET Core MicroService architecture:

The solid line in the figure represents the user code, and the dotted line represents the internal implementation of the CAP.

Getting Started

NuGet (Coming soon)

You can run the following command to install the CAP in your project.

If your Message Queue is using Kafka, you can:

PM> Install-Package DotNetCore.CAP.Kafka -Pre

or RabbitMQ:

PM> Install-Package DotNetCore.CAP.RabbitMQ -Pre

CAP provides EntityFramework as default database store extension :

PM> Install-Package DotNetCore.CAP.EntityFrameworkCore -Pre

Configuration

First,You need to config CAP in your Startup.cs:

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

    services.AddDbContext<AppDbContext>();

    services.AddCap()
            .AddEntityFrameworkStores<AppDbContext>()
            .AddKafka(x => x.Servers = "localhost:9092");
}

public void Configure(IApplicationBuilder app)
{
	.....

    app.UseCap();
}

Publish

Inject ICapProducerService in your Controller, then use the ICapProducerService to send message

public class PublishController : Controller
{
	private readonly ICapProducerService _producer;

	public PublishController(ICapProducerService producer)
	{
		_producer = producer;
	}


	[Route("~/checkAccount")]
	public async Task<IActionResult> PublishMessage()
	{
		//Specifies the message header and content to be sent
		await _producer.SendAsync("xxx.services.account.check", new Person { Name = "Foo", Age = 11 });

		return Ok();
	}
}

Subscribe

Action Method

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

public class PublishController : Controller
{
	private readonly ICapProducerService _producer;

	public PublishController(ICapProducerService producer)
	{
		_producer = producer;
	}


	[NoAction]
	[CapSubscribe("xxx.services.account.check")]
	public async Task CheckReceivedMessage(Person person)
	{
		Console.WriteLine(person.Name);
		Console.WriteLine(person.Age);     
		return Task.CompletedTask;
	}
}

Service Method

If your subscribe method is not in the Controller,then your subscribe class need to Inheritance ICapSubscribe:


namespace xxx.Service
{
	public interface ISubscriberService
	{
		public void CheckReceivedMessage(Person person);
	}


	public class SubscriberService: ISubscriberService, ICapSubscribe
	{
		[CapSubscribe("xxx.services.account.check")]
		public void CheckReceivedMessage(Person person)
		{
			
		}
	}
}

Then inject your ISubscriberService class in Startup.cs

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

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