Package com.example.qrgo.listeners
Interface OnCommentLoadedListener
-
public interface OnCommentLoadedListener
Listener for when a Comment object has been successfully loaded from Firebase Firestore.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCommentLoaded(Comment comment)
Called when a Comment object has been successfully loaded from Firebase Firestore.void
onCommentLoadFailure(java.lang.Exception e)
Called when there was an error loading the Comment object from Firebase Firestore.
-
-
-
Method Detail
-
onCommentLoaded
void onCommentLoaded(Comment comment)
Called when a Comment object has been successfully loaded from Firebase Firestore.- Parameters:
comment
- the Comment object that was loaded
-
onCommentLoadFailure
void onCommentLoadFailure(java.lang.Exception e)
Called when there was an error loading the Comment object from Firebase Firestore.- Parameters:
e
- the exception that occurred during loading
-
-