Package com.example.qrgo.listeners
Interface OnQrListLoadedListener
-
public interface OnQrListLoadedListener
An interface for listening to the result of the sorted QR functions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onQrListLoaded(java.util.List<BasicQRCode> qrcodes)
Invoked when the function successfully retrieves a list of QR sorted by its points.void
onQrListLoadFailure(java.lang.Exception e)
Invoked when the function fails to retrieve the list of sorted QR.
-
-
-
Method Detail
-
onQrListLoaded
void onQrListLoaded(java.util.List<BasicQRCode> qrcodes)
Invoked when the function successfully retrieves a list of QR sorted by its points.- Parameters:
qrcodes
- The list of sorted qrcodes.
-
onQrListLoadFailure
void onQrListLoadFailure(java.lang.Exception e)
Invoked when the function fails to retrieve the list of sorted QR.- Parameters:
e
- The exception that caused the failure.
-
-