Stijn Moreels

Results 140 comments of Stijn Moreels

Except of course if you mean the `RetryPolicy` on the `MessageReceiver` (and in the future `ServiceBusReceiver`); in that case it can be a set of values configured on the options...

Can we use the [`ServiceBusRetryOptions`](https://docs.microsoft.com/en-us/dotnet/api/azure.messaging.servicebus.servicebusretryoptions?view=azure-dotnet) for this?

By default, the `ServiceBusClient` has a exponential retry with a time-out of 1min and max retry of 3.

The new Azure SDK does not allow plug-ins but do allow overridden functionality for the `ServiceBusSender`/`ServiceBusReceiver` ([docs](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/servicebus/Azure.Messaging.ServiceBus/samples/Sample09_Extensibility.md)) but we will have to investigate if we want to allow this extensibility....

So a message pump that takes in messages from a Dapr subscription? Yes, that is similar to what we already have. How can we test this? Is this something we...

Ah, okay, so an extra layer, indeed. If you feel like there are some more context you should give me, yes, let's take this offline. If it uses the sidecar,...

This is actually a non-Arcus question. The Arcus Service Bus message pump still support a `IConfiguration` function to be passed-in to retrieve a connection string, but otherwise you'll have to...

The `TransportMetrics` are already there, but are still on `internal`: https://github.com/Azure/azure-sdk-for-net/blob/91ab305069bf3b4e14f1f206b31cf2aa6d2d64d4/sdk/servicebus/Azure.Messaging.ServiceBus/src/Client/ServiceBusClient.cs#L101 https://github.com/Azure/azure-sdk-for-net/blob/f35da107f6d8aa69ff3b0ac64fd3a1853f527212/sdk/servicebus/Azure.Messaging.ServiceBus/src/Client/ServiceBusClientOptions.cs#L88

> As far as I understand , this feature is still in beta ? I think the `internal` stuff is already in a minor version, but yeah, still `internal`. I...

Excluded the pumps projects as these are tested in the integration tests and are mostly containing code to contact Azure resources a.k.a. integration stuff.