Interface FirebaseOrganizer.GetQRCodesCallback

Enclosing class:
FirebaseOrganizer

public static interface FirebaseOrganizer.GetQRCodesCallback
Callback interface for fetching QR codes.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onError(String message)
    Callback which contains an error message.
    void
    Callback which contains a list of QRCodeData objects.
  • Method Details

    • onQRCodesFetched

      void onQRCodesFetched(ArrayList<QRCodeData> qrCodes)
      Callback which contains a list of QRCodeData objects.
      Parameters:
      qrCodes - The list of fetched QR codes.
    • onError

      void onError(String message)
      Callback which contains an error message.
      Parameters:
      message - Description of the error.