Interface ErrorReporter

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ErrorReporter
Receives one report after a logical SDK operation finally fails.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Implementations should enqueue quickly; reporter failures are isolated by the SDK.
  • Method Details

    • report

      void report(ErrorReport report)
      Implementations should enqueue quickly; reporter failures are isolated by the SDK.