mirror of
https://github.com/bitwarden/server.git
synced 2025-06-20 02:48:03 -05:00

* [PM-17562] Add strict delay support for RabbitMQ * fix lint error * Added more robust FailureReason handling and some additional tests * Fix two issues noted by SonarQube * Fix typo; Add alternate handling if MessageId is null or empty * Set MessageId on all message publishers
11 lines
393 B
C#
11 lines
393 B
C#
using Azure.Messaging.ServiceBus;
|
|
using Bit.Core.AdminConsole.Models.Data.Integrations;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IAzureServiceBusService : IEventIntegrationPublisher, IAsyncDisposable
|
|
{
|
|
ServiceBusProcessor CreateProcessor(string topicName, string subscriptionName, ServiceBusProcessorOptions options);
|
|
Task PublishToRetryAsync(IIntegrationMessage message);
|
|
}
|