Interface EventMutationCallback


public interface EventMutationCallback
Callback used by legacy organizer mutation paths that expect success/failure notifications.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called after an event mutation fails.
    void
    Called after an event mutation succeeds.
  • Method Details

    • onSuccess

      void onSuccess()
      Called after an event mutation succeeds.
    • onFailure

      void onFailure(Exception e)
      Called after an event mutation fails.
      Parameters:
      e - Failure returned by the attempted mutation.