Browse Source

Update README.md

master
Savorboard 4 years ago
committed by GitHub
parent
commit
f3c0aeec32
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      README.md

+ 3
- 1
README.md View File

@@ -32,12 +32,13 @@ CAP can be installed in your project with the following command.
PM> Install-Package DotNetCore.CAP PM> Install-Package DotNetCore.CAP
``` ```


CAP supports RabbitMQ, Kafka and AzureService as message queue, following packages are available to install:
CAP supports RabbitMQ, Kafka, AzureService, AmazonSQS as message queue, following packages are available to install:


``` ```
PM> Install-Package DotNetCore.CAP.Kafka PM> Install-Package DotNetCore.CAP.Kafka
PM> Install-Package DotNetCore.CAP.RabbitMQ PM> Install-Package DotNetCore.CAP.RabbitMQ
PM> Install-Package DotNetCore.CAP.AzureServiceBus PM> Install-Package DotNetCore.CAP.AzureServiceBus
PM> Install-Package DotNetCore.CAP.AmazonSQS
``` ```


CAP supports SqlServer, MySql, PostgreSql,MongoDB as event log storage. CAP supports SqlServer, MySql, PostgreSql,MongoDB as event log storage.
@@ -80,6 +81,7 @@ public void ConfigureServices(IServiceCollection services)
x.UseRabbitMQ("ConnectionString"); x.UseRabbitMQ("ConnectionString");
x.UseKafka("ConnectionString"); x.UseKafka("ConnectionString");
x.UseAzureServiceBus("ConnectionString"); x.UseAzureServiceBus("ConnectionString");
x.UseAmazonSQS();
}); });
} }




Loading…
Cancel
Save