Interface EventCommentsDB.CommentMutationCallback

Enclosing class:
EventCommentsDB

public static interface EventCommentsDB.CommentMutationCallback
Callback used for individual comment mutations.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Reports that the requested mutation failed.
    void
    Reports that the requested mutation completed successfully.
  • Method Details

    • onSuccess

      void onSuccess()
      Reports that the requested mutation completed successfully.
    • onFailure

      void onFailure(@NonNull Exception e)
      Reports that the requested mutation failed.
      Parameters:
      e - Firestore failure returned by the mutation.