Sean Feldman

Results 432 comments of Sean Feldman

@havarnov does my comment above clarifies not a bit more?

@Kadajski @havarnov `PreFetch` needs to be adjusted based on the time it takes to process a message in the user callback. There's no point of prefetching a large number of...

I've seen this with my customers. They had lock duration set to 30 seconds and time skew of 37 seconds. The servers have to be time synched. In their case,...

Reminds me of [another issue](https://github.com/Azure/azure-service-bus/issues/40) that would benefit from dealing with only one clock by using `TimeSpan` rather than `DateTime`.

@smithderekm could you please describe what your test is doing? I have a few thoughts on the topic, but it would be wrong to share it before having a better...

Thanks @smithderekm. Looking at this code above, I'm wondering if the code would work let's say against file system, would you do something like `File.Exists()`? Isn't that what BCL promises...

@smithderekm could you please review https://github.com/Azure/azure-service-bus-dotnet/issues/631#issuecomment-454562827 and reply? Thanks 🙂

@smithderekm having a contract for a single implementation to be able to mock during testing phase is something I don't like about how we do things in C#. By defining...

Note: adding `virtual` would be considered a breaking change.