コード例 #1
0
 private static void EventStoreConnReconnecting(object sender, ClientReconnectingEventArgs e)
 {
 }
コード例 #2
0
 private void EventStoreClientOnReconnecting(object sender, ClientReconnectingEventArgs clientReconnectingEventArgs)
 {
     _logger.Warn("Event Store reconnecting");
 }
コード例 #3
0
 protected virtual void OnReconnecting(ClientReconnectingEventArgs e)
 {
     var handler = Reconnecting;
     if (handler != null) handler(this, e);
 }
コード例 #4
0
ファイル: Program.cs プロジェクト: cognisant/cr-cqrs-scaffold
 private static void EventStoreClientOnReconnecting(object sender, ClientReconnectingEventArgs clientReconnectingEventArgs)
 {
     Console.WriteLine("Event Store reconnecting");
 }