Configuration

JustSaying has many configuration options for its subscription back end. In these pages we'll discuss them and detail how to decide what they should be.

All subscription configuration can be accessed via the MessagingBusBuilder.Subscriptions fluent api:

services.AddJustSaying((MessagingBusBuilder config) =>
{
    config.Subscriptions((SubscriptionsBuilder subscriptionConfig) =>
    {
        // here
    });

});

The subscriptionConfig builder provides methods to describe the topology of your messaging setup.

Last updated