JustSaying
  • Introduction
  • Getting Started
  • Messaging Configuration
    • Logging
    • Metrics
    • Naming Conventions
  • Subscriptions
    • Configuration
      • ForTopic
      • ForQueue
      • SqsReadConfiguration
      • Handler Registration and Resolution
    • SubscriptionGroups
      • Configuration
    • Middleware
      • Custom Middleware
    • Dead Letter Queues
    • Message Context
  • Publications
    • Configuration
  • How JustSaying Uses SQS/SNS
  • Interoperability
  • AWS IAM
  • Sample Application
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Publications

Configuration

All publication configuration can be accessed via the MessagingBusBuilder.Publications fluent api:

services.AddJustSaying((MessagingBusBuilder config) =>
{
    config.Publications((PublicationsBuilder publicationConfig) =>
    {
        // here
    });

});

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

They are essentially the same as the subscription configuration settings, except that the only define the topology for publishing messages, and not receiving them.

PreviousMessage ContextNextHow JustSaying Uses SQS/SNS

Last updated 2 years ago

Was this helpful?