Hi
I have a very simple question regarding MaxReconnectionAttemps from ConnectionSettings, namely is this cap individual per each connection drop or cumulative for all the dropped connections during the lifetime of the connection object?
So, to be even clearer, I have this code:
var settings = ConnectionSettings
.Create()
.KeepReconnecting()
.LimitReconnectionsTo(_settings.MaxReconnectionAttemps);
_connection = EventStoreConnection
.Create(settings, tcpAddress);
Say my limit is 10 and I had 2 drops, each ate up 3 attempts to get back online. After these 2, the third drop will have 4 available attempts left or 10?
Thank you.