You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

655 B

In-Memory Queue

In Memory Queue is a memory-based message queue provided by Community.

Configuration

To use In Memory Queue as a message transporter, you need to install the following extensions from NuGet:

PM> Install-Package Savorboard.CAP.InMemoryMessageQueue

Then you can add memory-based configuration items to the ConfigureServices method of Startup.cs.


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

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