mirror of
https://github.com/bitwarden/server.git
synced 2025-06-18 10:03:50 -05:00

* [PM-17562] Update documentation for event integrations * Fix SonarQube suggestion, bring ASB event listener in line with integration listener * Apply suggestions from code review Co-authored-by: Matt Bishop <mbishop@bitwarden.com> * Updates to README - PR fixes, additional context, tense alignment * Fix the formatting for inlined code snippets * Add links to different sections; remove inline code formatting in favor of single bacticks for JSON --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
11 lines
398 B
C#
11 lines
398 B
C#
using Azure.Messaging.ServiceBus;
|
|
using Bit.Core.AdminConsole.Models.Data.EventIntegrations;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IAzureServiceBusService : IEventIntegrationPublisher, IAsyncDisposable
|
|
{
|
|
ServiceBusProcessor CreateProcessor(string topicName, string subscriptionName, ServiceBusProcessorOptions options);
|
|
Task PublishToRetryAsync(IIntegrationMessage message);
|
|
}
|