private static void EventStoreConnReconnecting(object sender, ClientReconnectingEventArgs e)
 {
 }
 private void EventStoreClientOnReconnecting(object sender, ClientReconnectingEventArgs clientReconnectingEventArgs)
 {
     _logger.Warn("Event Store reconnecting");
 }
 protected virtual void OnReconnecting(ClientReconnectingEventArgs e)
 {
     var handler = Reconnecting;
     if (handler != null) handler(this, e);
 }
Esempio n. 4
0
 private static void EventStoreClientOnReconnecting(object sender, ClientReconnectingEventArgs clientReconnectingEventArgs)
 {
     Console.WriteLine("Event Store reconnecting");
 }