Polly Retry with RX Observable.Interval
问题 I'm new to Polly and I'm trying to apply the Retry policy, so that I can have it manually handling the retry connection in case of IBMMQ connection issue. Please, consider the following code: public class ReconnectException : Exception { } public class QueueMonitor : IObservable<Message>, IDisposable { private readonly MQQueue mqQueue; private readonly MQQueueManager queueManager; private readonly string queueName; private IDisposable timer; private readonly object lockObj = new object();