Example #1
0
 private void pubsubOnError(object sender, OnPubSubServiceErrorArgs e)
 {
     MessageBox.Show($"PubSub error! {e.Exception.Message}");
 }
Example #2
0
 private void PubSub_OnPubSubServiceError(object sender, OnPubSubServiceErrorArgs e)
 {
     consoleMessage[5] = $"PubSub Service Error: {e.Exception.Message}";
 }
Example #3
0
 private void onPubSubServiceError(object sender, OnPubSubServiceErrorArgs e)
 {
     Console.WriteLine(e.Exception.Message);
 }
Example #4
0
        private void PubSubError(object sender, OnPubSubServiceErrorArgs e)
        {
            Utils.LogToConsole($"PubSub error, reconnecting: {e.Exception.Message}");

            _pubSub.Connect();
        }
 private void _pubSubClient_OnPubSubServiceError(object sender, OnPubSubServiceErrorArgs e)
 {
     System.Diagnostics.Debug.WriteLine("PubSub Service Error:");
     System.Diagnostics.Debug.WriteLine(e.Exception.ToString());
 }
Example #6
0
 private void OnPubSubServiceError(object sender, OnPubSubServiceErrorArgs e)
 {
     _logger.Error($"{e.Exception.Message}");
 }
Example #7
0
 private void OnPubSubServiceError(object?sender, OnPubSubServiceErrorArgs e)
 {
     _logger.LogError(e.Exception, e.Exception.Message);
 }